Web Technology Notifier

Displays the Web technology of the current page.

Qu'est-ce que Web Technology Notifier ?

Web Technology Notifier est une extension Chrome développée par https://cyril.io, et sa fonction principale est "Displays the Web technology of the current page.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Web Technology Notifier

Téléchargez les fichiers d'extension Web Technology Notifier au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Web Technology Notifier Web Technology Notifier
ID fnpgnmindcbkjbpblcklealdhnogmlko
URL Officiel https://chromewebstore.google.com/detail/web-technology-notifier/fnpgnmindcbkjbpblcklealdhnogmlko
Description Displays the Web technology of the current page.
Taille du Fichier 34.15 KB
Nombre d'Installations 2,211
Version Actuelle 1.1.2
Dernière Mise à Jour 2014-05-30
Date de Publication 2014-05-30
Évaluation 3.10/5 Total 41 Évaluations
Développeur https://cyril.io
Type de Paiement free
Site Web de l'Extension https://github.com/cyril/web_technology_notifier.js
Langues Prises en Charge 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"
}