Nocode Detector

Chrome extension to detect website built using No Code tools

Nocode Detector क्या है?

Nocode Detector sagunsh द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome extension to detect website built using No Code tools"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Nocode Detector एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
}