Nocode Detector

Chrome extension to detect website built using No Code tools

Nocode Detectorとは何ですか?

Nocode Detectorはsagunshによって開発されたChromeの拡張機能で、その主な機能は「Chrome extension to detect website built using No Code tools」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Nocode Detector拡張機能のCRXファイルをダウンロード

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
Eメール [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
}