Web Application Inspector

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

Web Application Inspector là gì?

Web Application Inspector là một tiện ích mở rộng Chrome được phát triển bởi VeryCoolUsefulApps, và tính năng chính của nó là "Detect web applications and javascript libraries run while browsing websites. VeryCoolUsefulApps.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Web Application Inspector

Tải xuống các tệp mở rộng Web Application Inspector dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Web Application Inspector Web Application Inspector
ID egfnnnfdmdpjaelfbndjfclonlfpfacf
URL Chính Thức https://chromewebstore.google.com/detail/web-application-inspector/egfnnnfdmdpjaelfbndjfclonlfpfacf
Mô tả Detect web applications and javascript libraries run while browsing websites. VeryCoolUsefulApps.
Kích Thước Tệp 702 KB
Số Lần Cài Đặt 624
Phiên Bản Hiện Tại 0.3.2
Cập Nhật Lần Cuối 2015-06-26
Ngày Phát Hành 2015-06-26
Đánh Giá 3.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển VeryCoolUsefulApps
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}