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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Detect web applications, tools, and javascript libraries running on the websites you browse."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Web Application/Tool Sniffer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
आधिकारिक URL | 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" ] } |