Web Technology Notifier

Displays the Web technology of the current page.

¿Qué es Web Technology Notifier?

Web Technology Notifier es una extensión de Chrome desarrollada por https://cyril.io, y su función principal es "Displays the Web technology of the current page.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Web Technology Notifier

Descarga archivos de extensión Web Technology Notifier en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Web Technology Notifier Web Technology Notifier
ID fnpgnmindcbkjbpblcklealdhnogmlko
URL Oficial https://chromewebstore.google.com/detail/web-technology-notifier/fnpgnmindcbkjbpblcklealdhnogmlko
Descripción Displays the Web technology of the current page.
Tamaño del Archivo 34.15 KB
Cantidad de Instalaciones 2,211
Versión Actual 1.1.2
Última Actualización 2014-05-30
Fecha de Publicación 2014-05-30
Calificación 3.10/5 Total de 41 Calificaciones
Desarrollador https://cyril.io
Tipo de Pago free
Sitio Web de la Extensión https://github.com/cyril/web_technology_notifier.js
Idiomas Soportados 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"
}