Web Technology Notifier
Displays the Web technology of the current page.
O que é Web Technology Notifier?
Web Technology Notifier é uma extensão do Chrome desenvolvida por https://cyril.io, e sua principal característica é "Displays the Web technology of the current page.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Web Technology Notifier
Baixe arquivos de extensão Web Technology Notifier 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
Web Technology Notifier displays the technology that is executed by the Web server of the current page through an icon. Many modules and CMS can be identified, such as Phusion Passenger for Ruby applications (as Ruby on Rails and Sinatra frameworks), PHP based applications (like Zend Server or iPyramid), Zope (Python powered), Microsoft ASP.NET, and more. * * * Changes: * remove permissions on HTTPS (because of troubles; e.g., bank websites); * no longer loads pages twice (by performing a HEAD request instead of a GET one); * remove "tabs" from permissions.
Informações Básicas da Extensão
Nome | Web Technology Notifier |
ID | fnpgnmindcbkjbpblcklealdhnogmlko |
URL Oficial | https://chromewebstore.google.com/detail/web-technology-notifier/fnpgnmindcbkjbpblcklealdhnogmlko |
Descrição | Displays the Web technology of the current page. |
Tamanho do Arquivo | 34.15 KB |
Contagem de Instalações | 2,211 |
Versão Atual | 1.1.2 |
Última Atualização | 2014-05-30 |
Data de Publicação | 2014-05-30 |
Classificação | 3.10/5 Total de 41 Avaliações |
Desenvolvedor | https://cyril.io |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/cyril/web_technology_notifier.js |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Web Technology Notifier", "version": "1.1.2", "description": "Displays the Web technology of the current page.", "icons": { "128": "web_technology_notifier-128x128.png" }, "permissions": [ "http:\/\/*\/*" ], "content_scripts": [ { "js": [ "web_technology_notifier.js" ], "matches": [ "http:\/\/*\/*" ], "run_at": "document_start" } ], "page_action": [], "author": "Cyril Wack", "background": { "scripts": [ "web_technologies.js", "event_page.js" ], "persistent": false }, "short_name": "Web Technology" } |