Nocode Detector

Chrome extension to detect website built using No Code tools

Nocode Detector là gì?

Nocode Detector là một tiện ích mở rộng Chrome được phát triển bởi sagunsh, và tính năng chính của nó là "Chrome extension to detect website built using No Code tools".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Nocode Detector

Tải xuống các tệp mở rộng Nocode Detector dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Nocode Detector Nocode Detector
ID folgpaebeegaaccahmhilogpohmfcijb
URL Chính Thức https://chromewebstore.google.com/detail/nocode-detector/folgpaebeegaaccahmhilogpohmfcijb
Mô tả Chrome extension to detect website built using No Code tools
Kích Thước Tệp 12.78 KB
Số Lần Cài Đặt 352
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2021-02-14
Ngày Phát Hành 2021-02-14
Nhà Phát Triển sagunsh
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://sagunshrestha.com/
Ngôn Ngữ Được Hỗ Trợ 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
}