How can you detect what Wix Apps a website is using by looking at the source code?
Detecting whether a website uses Wix Apps involves identifying clues taht comes when using Wix platforms.
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. - Check for Wix Markers: Search for keywords that are fundamental to Wix websites. Use
Ctrl+F
(Windows) orCmd+F
(Mac) to open the search function and look for the following keywords:wix
: This keyword is prevalent in Wix URLs and scripts, such as<script src="https://static.wixstatic.com"></script>
.
- Look for appDefinitionName: Wix applications often include a unique identifier in their code. Search for the keyword
appDefinitionName
in the source code. This might appear in JSON objects or JavaScript code, like:"appDefinitionName": "some-app-name"
. - Identify Wix-Specific Scripts: Check for specific URLs that link to Wix services in the JavaScript code. Look for patterns like
<script async src="https://static.wixstatic.com/something.js"></script>
. - Check for Wix Div ID: Many Wix elements have unique div IDs that start with
wix-
. Search for attributes likeid="wix-xxxx"
in the HTML. - Search for Wix-Specific CSS Classes: Wix also uses unique CSS classes. Look for classes in the source code that contain the keyword
wix
. For example:class="wix-xxxx"
. - Look for Wix Analytics Scripts: Wix integrates Google Analytics and its own tracking scripts. Search for keywords like
wixAnalytics
within the scripts in the code. - Identify External Resources: Look for links to Wix-hosted resources such as fonts, images, or stylesheets, like
https://static.wixstatic.com/...
in the<link>
or<script>
tags.