Web Application/Tool Sniffer

Detect web applications, tools, and javascript libraries running on the websites you browse.

Web Application/Tool Sniffer란 무엇입니까?

Web Application/Tool Sniffer은(는) https://jamesjnadeau.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Detect web applications, tools, and javascript libraries running on the websites you browse."입니다.

확장 프로그램 스크린샷

screenshot

Web Application/Tool Sniffer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Detects and displays web framework, CMS and javascript libraries running on the websites you are visiting. 

An icon will appear in the address bar that indicates the detected frameworks. Version detection is available on some frameworks as well!

You can view the source code here:
https://github.com/jamesjnadeau/chromesniffer

I don't care to ever monetize this, or track what you're doing. Take a look at the code if you want :) I use this because I'm nosey, and thought I'd share my updates to the project.

This root project is not updated regularly, and I've pulled in some changes others have submitted, and a few of my own tweeks. These include:

-proper detection of twitter bootstrap
-jQuery Mobile Detection
-aws services from https://github.com/nqbao/chromesniffer/pull/65                    

확장 프로그램 기본 정보

이름 Web Application/Tool Sniffer Web Application/Tool Sniffer
ID fbnlibmhkkkpncdgfolnijebgnmbdbhi
공식 URL https://chromewebstore.google.com/detail/web-applicationtool-sniff/fbnlibmhkkkpncdgfolnijebgnmbdbhi
설명 Detect web applications, tools, and javascript libraries running on the websites you browse.
파일 크기 709 KB
설치 횟수 2,187
현재 버전 0.5
최근 업데이트 2018-12-27
출시 날짜 2018-12-26
평점 3.42/5 총 19 개의 평점
개발자 https://jamesjnadeau.com
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/jamesjnadeau/chromesniffer
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Web Application\/Tool Sniffer",
    "manifest_version": 2,
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "version": "0.5",
    "description": "Detect web applications, tools, and javascript libraries running on the websites you browse.",
    "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"
    ]
}