Nocode Detector

Chrome extension to detect website built using No Code tools

Cos'è Nocode Detector?

Nocode Detector è un'estensione di Chrome sviluppata da sagunsh, e la sua funzione principale è "Chrome extension to detect website built using No Code tools".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Nocode Detector

Scarica i file di estensione Nocode Detector in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Nocode Detector Nocode Detector
ID folgpaebeegaaccahmhilogpohmfcijb
URL Ufficiale https://chromewebstore.google.com/detail/nocode-detector/folgpaebeegaaccahmhilogpohmfcijb
Descrizione Chrome extension to detect website built using No Code tools
Dimensione del File 12.78 KB
Conteggio Installazioni 352
Versione Corrente 1.0
Ultimo Aggiornamento 2021-02-14
Data di Pubblicazione 2021-02-14
Sviluppatore sagunsh
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://sagunshrestha.com/
Lingue Supportate 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
}