Nocode Detector

Chrome extension to detect website built using No Code tools

Co je Nocode Detector?

Nocode Detector je rozšíření Chrome vyvinuté sagunsh, a jeho hlavní funkcí je „Chrome extension to detect website built using No Code tools“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Nocode Detector

Stáhněte si soubory rozšíření Nocode Detector ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Nocode Detector is a simple browser extension that detects if a website is built using nocode website builders. Currently it supports Wordpress, Webflow, Bubble, Carrd, Notion, Squarespace and Wix.

This is just a start and I will be adding more detectors soon. If you want me to add a detector for some specific tool, email me the tool and a few sites built using it.                    

Základní Informace o Rozšíření

Název Nocode Detector Nocode Detector
ID folgpaebeegaaccahmhilogpohmfcijb
Oficiální URL https://chromewebstore.google.com/detail/nocode-detector/folgpaebeegaaccahmhilogpohmfcijb
Popis Chrome extension to detect website built using No Code tools
Velikost souboru 12.78 KB
Počet instalací 352
Aktuální Verze 1.0
Poslední Aktualizace 2021-02-14
Datum Vydání 2021-02-14
Vývojář sagunsh
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://sagunshrestha.com/
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Nocode Detector",
    "version": "1.0",
    "description": "Chrome extension to detect website built using No Code tools",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "content_script.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Nocode Detector",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/nocode_no16.png",
            "32": "icons\/nocode_no32.png"
        }
    },
    "manifest_version": 2
}