Web Application/Tool Sniffer

Detect web applications, tools, and javascript libraries running on the websites you browse.

Что такое Web Application/Tool Sniffer?

Web Application/Tool Sniffer - это расширение Chrome, разработанное https://jamesjnadeau.com, и его основная функция - "Detect web applications, tools, and javascript libraries running on the websites you browse.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Web Application/Tool Sniffer

Скачайте файлы расширений Web Application/Tool Sniffer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Detects and displays web framework, CMS and javascript libraries running on the websites you are visiting. 

An icon will appear in the address bar that indicates the detected frameworks. Version detection is available on some frameworks as well!

You can view the source code here:
https://github.com/jamesjnadeau/chromesniffer

I don't care to ever monetize this, or track what you're doing. Take a look at the code if you want :) I use this because I'm nosey, and thought I'd share my updates to the project.

This root project is not updated regularly, and I've pulled in some changes others have submitted, and a few of my own tweeks. These include:

-proper detection of twitter bootstrap
-jQuery Mobile Detection
-aws services from https://github.com/nqbao/chromesniffer/pull/65                    

Основная информация о расширении

Название Web Application/Tool Sniffer Web Application/Tool Sniffer
ID fbnlibmhkkkpncdgfolnijebgnmbdbhi
Официальный URL https://chromewebstore.google.com/detail/web-applicationtool-sniff/fbnlibmhkkkpncdgfolnijebgnmbdbhi
Описание Detect web applications, tools, and javascript libraries running on the websites you browse.
Размер файла 709 KB
Количество установок 2,187
Текущая Версия 0.5
Последнее Обновление 2018-12-27
Дата публикации 2018-12-26
Рейтинг 3.42/5 Всего 19 оценок
Разработчик https://jamesjnadeau.com
Тип оплаты free
Официальный сайт расширения https://github.com/jamesjnadeau/chromesniffer
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Web Application\/Tool Sniffer",
    "manifest_version": 2,
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "version": "0.5",
    "description": "Detect web applications, tools, and javascript libraries running on the websites you browse.",
    "background": {
        "page": "background.html"
    },
    "page_action": {
        "default_icon": "icon.png",
        "default_title": "Click for more details.",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "webRequest",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "detector.js"
    ]
}