Nocode Detector

Chrome extension to detect website built using No Code tools

Vad är Nocode Detector?

Nocode Detector är en Chrome-tillägg utvecklad av sagunsh, och dess huvudfunktion är "Chrome extension to detect website built using No Code tools".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Nocode Detector-förlängningens CRX-fil

Ladda ner Nocode Detector-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Nocode Detector Nocode Detector
ID folgpaebeegaaccahmhilogpohmfcijb
Officiell webbadress https://chromewebstore.google.com/detail/nocode-detector/folgpaebeegaaccahmhilogpohmfcijb
Beskrivning Chrome extension to detect website built using No Code tools
Filstorlek 12.78 KB
Antal Installationer 352
Aktuell Version 1.0
Senast Uppdaterad 2021-02-14
Publiceringsdatum 2021-02-14
Utvecklare sagunsh
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://sagunshrestha.com/
Stödda Språk 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
}