Nocode Detector

Chrome extension to detect website built using No Code tools

Co to jest Nocode Detector?

Nocode Detector to rozszerzenie Chrome opracowane przez sagunsh, a jego główną funkcją jest „Chrome extension to detect website built using No Code tools”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Nocode Detector

Pobierz pliki rozszerzeń Nocode Detector w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Nocode Detector Nocode Detector
ID folgpaebeegaaccahmhilogpohmfcijb
Oficjalny URL https://chromewebstore.google.com/detail/nocode-detector/folgpaebeegaaccahmhilogpohmfcijb
Opis Chrome extension to detect website built using No Code tools
Rozmiar pliku 12.78 KB
Liczba instalacji 352
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2021-02-14
Data Publikacji 2021-02-14
Deweloper sagunsh
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://sagunshrestha.com/
Obsługiwane Języki 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
}