Library Sniffer
Sniff web framework and javascript libraries run on browsing website.
什麼是Library Sniffer?
Library Sniffer是由https://justjavac.com開發的Chrome擴展程式,該擴展的主要功能是“Sniff web framework and javascript libraries run on browsing website.”。
擴展截圖
下載Library Sniffer擴展crx文件
下載Library Sniffer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
                        LibrarySniffer is a web technology detection tool that detects which JavaScript libraries or frameworks are being used on the web page currently being viewed. 
With LibrarySniffer you can detect web pages, frameworks, third-party services, server technologies and more.                     擴展基本資訊
| 名稱 |   |  
| ID | fhhdlnnepfjhlhilgmeepgkhjmhhhjkh | 
| 官方網址 | https://chromewebstore.google.com/detail/library-sniffer/fhhdlnnepfjhlhilgmeepgkhjmhhhjkh | 
| 簡介 | Sniff web framework and javascript libraries run on browsing website. | 
| 檔案大小 | 533 KB | 
| 安裝次數 | 33,292 | 
| 目前版本 | 2.9.1 | 
| 更新時間 | 2020-07-24 | 
| 上架時間 | 2018-09-07 | 
| 評分 | 4.30/5 共 98 次評分 | 
| 開發者 | https://justjavac.com | 
| 電子郵箱 | [email protected] | 
| 付費類型 | free | 
| 擴展官網 | https://github.com/justjavac/ChromeSnifferPlus | 
| 說明頁面URL | https://github.com/justjavac/ChromeSnifferPlus | 
| 支援的語言 | en,fr,pt-BR,zh-CN | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "short_name": "__MSG_extShortName__",
    "manifest_version": 2,
    "version": "2.9.1",
    "description": "__MSG_extDesc__",
    "default_locale": "en",
    "background": {
        "page": "background.html"
    },
    "options_page": "option.html",
    "page_action": {
        "default_icon": "icon.png",
        "default_title": "__MSG_pageActionTitle__",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/main.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "webRequest",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "js\/detector.js"
    ]
}  |  |