Library Sniffer
Sniff web framework and javascript libraries run on browsing website.
What is Library Sniffer?
Library Sniffer is a Chrome extension developed by https://justjavac.com, and its main feature is "Sniff web framework and javascript libraries run on browsing website.".
Extension Screenshots
Download Library Sniffer Extension CRX File
Download Library Sniffer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Library Sniffer |
ID | fhhdlnnepfjhlhilgmeepgkhjmhhhjkh |
Official URL | https://chromewebstore.google.com/detail/library-sniffer/fhhdlnnepfjhlhilgmeepgkhjmhhhjkh |
Description | Sniff web framework and javascript libraries run on browsing website. |
File Size | 533 KB |
Installation Count | 33,292 |
Current Version | 2.9.1 |
Last Updated | 2020-07-24 |
Publish Date | 2018-09-07 |
Rating | 4.30/5 Total 98 Ratings |
Developer | https://justjavac.com |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/justjavac/ChromeSnifferPlus |
Help Page URL | https://github.com/justjavac/ChromeSnifferPlus |
Supported Languages | 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" ] } |