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.”。
擴展截圖
下載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 |
ID | fbnlibmhkkkpncdgfolnijebgnmbdbhi |
官方網址 | 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" ] } |