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
电子邮箱 [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
}