Web Technology Notifier

Displays the Web technology of the current page.

Что такое Web Technology Notifier?

Web Technology Notifier - это расширение Chrome, разработанное https://cyril.io, и его основная функция - "Displays the Web technology of the current page.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Web Technology Notifier

Скачайте файлы расширений Web Technology Notifier в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Web Technology Notifier Web Technology Notifier
ID fnpgnmindcbkjbpblcklealdhnogmlko
Официальный URL https://chromewebstore.google.com/detail/web-technology-notifier/fnpgnmindcbkjbpblcklealdhnogmlko
Описание Displays the Web technology of the current page.
Размер файла 34.15 KB
Количество установок 2,211
Текущая Версия 1.1.2
Последнее Обновление 2014-05-30
Дата публикации 2014-05-30
Рейтинг 3.10/5 Всего 41 оценок
Разработчик https://cyril.io
Тип оплаты free
Официальный сайт расширения https://github.com/cyril/web_technology_notifier.js
Поддерживаемые языки 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"
}