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
}