Wix Site Checker

Checks if this page was built in Wix

What is Wix Site Checker?

Wix Site Checker is a Chrome extension developed by https://certifiedcode.us, and its main feature is "Checks if this page was built in Wix".

Extension Screenshots

screenshot

Download Wix Site Checker Extension CRX File

Download Wix Site Checker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension tells you if a website was built in Wix. The icon is usually grey. Websites built with Wix will turn blue with a green checkmark.
The end of inspecting to see if it's made on Wix.

You can see a website made in Wix, such as wix.com and editorx.com, displayed in green checkmark, and the rest will show as grey.                    

Extension Basic Information

Name Wix Site Checker Wix Site Checker
ID hbmjpffnedifdkfklecdpbeihapnocpb
Official URL https://chromewebstore.google.com/detail/wix-site-checker/hbmjpffnedifdkfklecdpbeihapnocpb
Description Checks if this page was built in Wix
File Size 8.34 KB
Installation Count 1,140
Current Version 1.0
Last Updated 2022-10-23
Publish Date 2022-02-02
Rating 3.50/5 Total 2 Ratings
Developer https://certifiedcode.us
Email [email protected]
Payment Type free
Extension Website https://www.certifiedcode.us/
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wix Site Checker",
    "description": "Checks if this page was built in Wix",
    "version": "1.0",
    "manifest_version": 3,
    "icons": {
        "128": "false.png"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "128": "false.png"
        }
    },
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}