How can you detect if a website uses Super?
Detecting if a website is built with Super involves inspecting the page source for specific indicators unique to the Super website builder.
Here’s a step-by-step guide on how to do it:
- Open the Page Source: Right-click on the webpage and select “View Page Source” or press
Ctrl+U
(Windows) orCmd+Option+U
(Mac) to open the page’s source code. - Search for Super-Specific Assets: Use
Ctrl+F
(Windows) orCmd+F
(Mac) to activate the search function. Look for the following keyword:assets.super.so
: This script indicates the presence of assets generated by Super’s infrastructure.
- Check for Super’s Meta Tags: Look for meta tags in the source code that may indicate the use of Super. For instance:
<meta name="generator" content="Super">
: This meta tag can confirm the website is built with Super.
- Look for Super Specific CSS Classes: Inspect the HTML elements for any unique CSS classes that Super might use. Common prefixes may include
super-
or similar conventions in the class names. - Search for Custom Domains Example: Websites using Super often have a specific URL structure. Look for domains that utilize
.super.site
or similar patterns. This structure can indicate usage of the Super platform. - Check for Built-in Features: Super offers certain built-in functionalities such as image and video optimization. Search for features or components unique to Super, such as
video-placeholder
orimage-optimization
in the source code. - Status Code Check: Perform a URL search for a common page resource (like .css or .js files) used in Super sites. If access to these resources returns a
200
status code, it’s likely built using Super. You can use browser developer tools to inspect these requests.
By following these steps, you should be able to determine whether a website is using Super as its website builder.