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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}