Nocode Detector

Chrome extension to detect website built using No Code tools

Hvad er Nocode Detector?

Nocode Detector er en Chrome-udvidelse udviklet af sagunsh, og dens hovedfunktion er "Chrome extension to detect website built using No Code tools".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Nocode Detector-udvidelses-CRX-fil

Download Nocode Detector-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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æggende oplysninger om udvidelsen

Navn Nocode Detector Nocode Detector
ID folgpaebeegaaccahmhilogpohmfcijb
Officiel URL https://chromewebstore.google.com/detail/nocode-detector/folgpaebeegaaccahmhilogpohmfcijb
Beskrivelse Chrome extension to detect website built using No Code tools
Filstørrelse 12.78 KB
Antal Installationer 352
Nuværende Version 1.0
Senest Opdateret 2021-02-14
Udgivelsesdato 2021-02-14
Udvikler sagunsh
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://sagunshrestha.com/
Understøttede Sprog 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
}