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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    ]
}