Web Scan - Web technology lookup

Discover the libraries and web technologies in any websites

Web Scan - Web technology lookupとは何ですか?

Web Scan - Web technology lookupはKarthik S Kumarによって開発されたChromeの拡張機能で、その主な機能は「Discover the libraries and web technologies in any websites」です。

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

screenshot

Web Scan - Web technology lookup拡張機能のCRXファイルをダウンロード

Web Scan - Web technology lookup拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Free tool to discover the technologies on which any website runs. The tool shows the library names along with icons and version number if available in the address bar. Now in dark mode!

This easy to use library requires no configuration. Just add it to your chrome and voila you are ready to go. Lightweight and efficient.

This extension will give you a one-click access to find-out the technologies used on the current page that you are visiting. The algorithm can detect 80+ javascript libraries.

 Visit the support link and file an issue if you think anything is missing. This is an open source project. Fork the project on Github! 

Note:
The tool is completely free
It does not access or track your data

Coming soon:
Detection of the fonts used in webpages
Detection of server on which the webpage runs                    

拡張機能の基本情報

名前 Web Scan - Web technology lookup Web Scan - Web technology lookup
ID hfcopfpmehaahmglocoolmgidihnjdgn
公式URL https://chromewebstore.google.com/detail/web-scan-web-technology-l/hfcopfpmehaahmglocoolmgidihnjdgn
説明 Discover the libraries and web technologies in any websites
ファイルサイズ 236 KB
インストール数 1,041
現在のバージョン 0.0.1
最終更新日 2020-04-20
公開日 2020-04-18
評価 5.00/5 合計 1 レビュー
開発者 Karthik S Kumar
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/00karthik/web-scan
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Web Scan - Web technology lookup",
    "short_name": "WebScan - Library detection tool",
    "version": "0.0.1",
    "web_accessible_resources": [
        "detect.js"
    ],
    "description": "Discover the libraries and web technologies in any websites",
    "icons": {
        "48": "icons\/icon.png",
        "128": "icons\/icon.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "WebScan",
        "default_icon": "icons\/icon.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_idle"
        }
    ]
}