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
官方網址 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
}