Web Technology Notifier

Displays the Web technology of the current page.

Apa itu Web Technology Notifier?

Web Technology Notifier adalah ekstensi Chrome yang dikembangkan oleh https://cyril.io, dan fitur utamanya adalah "Displays the Web technology of the current page.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Web Technology Notifier

Unduh file ekstensi Web Technology Notifier dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Web Technology Notifier Web Technology Notifier
ID fnpgnmindcbkjbpblcklealdhnogmlko
URL Resmi https://chromewebstore.google.com/detail/web-technology-notifier/fnpgnmindcbkjbpblcklealdhnogmlko
Deskripsi Displays the Web technology of the current page.
Ukuran File 34.15 KB
Jumlah Instalasi 2,211
Versi Saat Ini 1.1.2
Terakhir Diperbarui 2014-05-30
Tanggal Publikasi 2014-05-30
Penilaian 3.10/5 Total 41 Penilaian
Pengembang https://cyril.io
Tipe Pembayaran free
Situs Ekstensi https://github.com/cyril/web_technology_notifier.js
Bahasa yang Didukung 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"
}