Nocode Detector

Chrome extension to detect website built using No Code tools

Τι είναι το Nocode Detector;

Το Nocode Detector είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον sagunsh, και η κύρια λειτουργία του είναι "Chrome extension to detect website built using No Code tools".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Nocode Detector

Λήψη αρχείων επέκτασης Nocode Detector σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Nocode Detector Nocode Detector
ID folgpaebeegaaccahmhilogpohmfcijb
Επίσημο URL https://chromewebstore.google.com/detail/nocode-detector/folgpaebeegaaccahmhilogpohmfcijb
Περιγραφή Chrome extension to detect website built using No Code tools
Μέγεθος Αρχείου 12.78 KB
Αριθμός Εγκαταστάσεων 352
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2021-02-14
Ημερομηνία Δημοσίευσης 2021-02-14
Προγραμματιστής sagunsh
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://sagunshrestha.com/
Υποστηριζόμενες Γλώσσες 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
}