Nocode Detector

Chrome extension to detect website built using No Code tools

Nocode Detectorคืออะไร?

Nocode Detector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sagunsh และคุณลักษณะหลักของมันคือ "Chrome extension to detect website built using No Code tools"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Nocode Detector

ดาวน์โหลดไฟล์ส่วนขยาย 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
}