Nocode Detector

Chrome extension to detect website built using No Code tools

Wat is Nocode Detector?

Nocode Detector is een Chrome-extensie ontwikkeld door sagunsh, en de belangrijkste functie is "Chrome extension to detect website built using No Code tools".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Nocode Detector

Download Nocode Detector-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Nocode Detector Nocode Detector
ID folgpaebeegaaccahmhilogpohmfcijb
Officiële URL https://chromewebstore.google.com/detail/nocode-detector/folgpaebeegaaccahmhilogpohmfcijb
Beschrijving Chrome extension to detect website built using No Code tools
Bestandsgrootte 12.78 KB
Aantal Installaties 352
Huidige Versie 1.0
Laatst Bijgewerkt 2021-02-14
Publicatiedatum 2021-02-14
Ontwikkelaar sagunsh
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://sagunshrestha.com/
Ondersteunde Talen 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
}