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”。
扩展截图
下载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 |
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 |
电子邮箱 | [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" } ] } |