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 |
| 官方URL | 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"
]
} | |