Web Application Inspector

Detect web applications and javascript libraries run while browsing websites. VeryCoolUsefulApps.

什麼是Web Application Inspector?

Web Application Inspector是由VeryCoolUsefulApps開發的Chrome擴展程式,該擴展的主要功能是“Detect web applications and javascript libraries run while browsing websites. VeryCoolUsefulApps.”。

擴展截圖

screenshot

下載Web Application Inspector擴展crx文件

下載Web Application Inspector擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Web Application Inspector gives you information about what technologies are used on a website.   Just click on the little icon that comes up in the search bar of your browser to see all of the applications that the Inspector recognizes.

It will tell you if it is built with Wordpress, Drupal, or Joomla for example.   

It will tell you also if the site is using IIS, Apache, Nginx, for example as well.

The code makes all of it analysis locally, it doesn't make external calls.  You can confirm this with TCPView or other tools if you are interested.   

This is open source code that has been modified from the original work available at https://github.com/nqbao/chromesniffer.  This modification includes an HTML icon which should show up on all websites even if the Inspector doesn't recognize anything else.                    

擴展基本資訊

名稱 Web Application Inspector Web Application Inspector
ID egfnnnfdmdpjaelfbndjfclonlfpfacf
官方網址 https://chromewebstore.google.com/detail/web-application-inspector/egfnnnfdmdpjaelfbndjfclonlfpfacf
簡介 Detect web applications and javascript libraries run while browsing websites. VeryCoolUsefulApps.
檔案大小 702 KB
安裝次數 624
目前版本 0.3.2
更新時間 2015-06-26
上架時間 2015-06-26
評分 3.00/5 共 4 次評分
開發者 VeryCoolUsefulApps
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Web Application Inspector",
    "manifest_version": 2,
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "version": "0.3.2",
    "description": "Detect web applications and javascript libraries run while browsing websites.  VeryCoolUsefulApps.",
    "background": {
        "page": "background.html"
    },
    "page_action": {
        "default_icon": "icon.png",
        "default_title": "Click for more details.",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "webRequest",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "detector.js"
    ]
}