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はhttps://jamesjnadeau.comによって開発されたChromeの拡張機能で、その主な機能は「Detect web applications, tools, and javascript libraries running on the websites you browse.」です。

拡張機能のスクリーンショット

screenshot

Web Application/Tool Sniffer拡張機能のCRXファイルをダウンロード

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"
    ]
}