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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
}