Web Application/Tool Sniffer
Detect web applications, tools, and javascript libraries running on the websites you browse.
O que é Web Application/Tool Sniffer?
Web Application/Tool Sniffer é uma extensão do Chrome desenvolvida por https://jamesjnadeau.com, e sua principal característica é "Detect web applications, tools, and javascript libraries running on the websites you browse.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Web Application/Tool Sniffer
Baixe arquivos de extensão Web Application/Tool Sniffer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Web Application/Tool Sniffer |
ID | fbnlibmhkkkpncdgfolnijebgnmbdbhi |
URL Oficial | https://chromewebstore.google.com/detail/web-applicationtool-sniff/fbnlibmhkkkpncdgfolnijebgnmbdbhi |
Descrição | Detect web applications, tools, and javascript libraries running on the websites you browse. |
Tamanho do Arquivo | 709 KB |
Contagem de Instalações | 2,187 |
Versão Atual | 0.5 |
Última Atualização | 2018-12-27 |
Data de Publicação | 2018-12-26 |
Classificação | 3.42/5 Total de 19 Avaliações |
Desenvolvedor | https://jamesjnadeau.com |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/jamesjnadeau/chromesniffer |
Idiomas Suportados | 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" ] } |