Library Detector
Detects the Javascript libraries running on a page and displays their icons in the address bar.
什么是Library Detector?
Library Detector是由library-detector-for-chrome开发的Chrome扩展程序,该扩展的主要功能是“Detects the Javascript libraries running on a page and displays their icons in the address bar.”。
扩展截图
下载Library Detector扩展crx文件
下载Library Detector扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The Library Detector extension discovers which Javascript libraries are being utilized on webpages you visit and displays their icons, along with a link to the library's homepage, in the address bar. Figure out which cool libraries are powering today's websites. You'll be surprised to learn about some of the more esoteric libraries that are out there. You'll also be horrified by the awful cocktail of libraries that some popular sites utilize! Supports over 80 Javascript libraries, and growing with every version. Visit the support link and file a request if you think anything is missing. Or, better yet, fork the project on Github!
扩展基本信息
名称 | Library Detector |
ID | cgaocdmhkmfnkdkbnckgmpopcbpaaejo |
官方URL | https://chromewebstore.google.com/detail/library-detector/cgaocdmhkmfnkdkbnckgmpopcbpaaejo |
简介 | Detects the Javascript libraries running on a page and displays their icons in the address bar. |
文件大小 | 232 KB |
安装次数 | 13,803 |
当前版本 | 6.2.0 |
更新时间 | 2020-08-02 |
上架时间 | 2019-12-19 |
评分 | 4.04/5 共47次评分 |
开发者 | library-detector-for-chrome |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/johnmichel/Library-Detector-for-Chrome |
帮助页面URL | https://github.com/johnmichel/Library-Detector-for-Chrome/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Library Detector", "short_name": "Library Detector", "version": "6.2.0", "web_accessible_resources": [ "library\/libraries.js", "content_scripts\/lib_detect.js" ], "description": "Detects the Javascript libraries running on a page and displays their icons in the address bar.", "icons": { "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "library\/libraries.js", "background_scripts\/main.js" ], "persistent": false }, "page_action": { "default_icon": { "19": "icons\/icon19.png", "38": "icons\/icon38.png" }, "default_title": "Library Detector" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_scripts\/inject.js" ], "run_at": "document_end" }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_scripts\/detect.js" ], "run_at": "document_idle" } ] } |