Nocode Detector

Chrome extension to detect website built using No Code tools

Qu'est-ce que Nocode Detector ?

Nocode Detector est une extension Chrome développée par sagunsh, et sa fonction principale est "Chrome extension to detect website built using No Code tools".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Nocode Detector

Téléchargez les fichiers d'extension Nocode Detector au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Nocode Detector Nocode Detector
ID folgpaebeegaaccahmhilogpohmfcijb
URL Officiel https://chromewebstore.google.com/detail/nocode-detector/folgpaebeegaaccahmhilogpohmfcijb
Description Chrome extension to detect website built using No Code tools
Taille du Fichier 12.78 KB
Nombre d'Installations 352
Version Actuelle 1.0
Dernière Mise à Jour 2021-02-14
Date de Publication 2021-02-14
Développeur sagunsh
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://sagunshrestha.com/
Langues Prises en Charge 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
}