Web Technology Notifier

Displays the Web technology of the current page.

Cos'è Web Technology Notifier?

Web Technology Notifier è un'estensione di Chrome sviluppata da https://cyril.io, e la sua funzione principale è "Displays the Web technology of the current page.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Web Technology Notifier

Scarica i file di estensione Web Technology Notifier in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Web Technology Notifier Web Technology Notifier
ID fnpgnmindcbkjbpblcklealdhnogmlko
URL Ufficiale https://chromewebstore.google.com/detail/web-technology-notifier/fnpgnmindcbkjbpblcklealdhnogmlko
Descrizione Displays the Web technology of the current page.
Dimensione del File 34.15 KB
Conteggio Installazioni 2,211
Versione Corrente 1.1.2
Ultimo Aggiornamento 2014-05-30
Data di Pubblicazione 2014-05-30
Valutazione 3.10/5 Totale 41 Valutazioni
Sviluppatore https://cyril.io
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/cyril/web_technology_notifier.js
Lingue Supportate 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"
}