Which host

show the IP of matched hostnames

Which host란 무엇입니까?

Which host은(는) ylzcylx에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "show the IP of matched hostnames"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Which host 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        show the IP of matched hostnames.

Source code at https://github.com/jdf2e/which_host                    

확장 프로그램 기본 정보

이름 Which host Which host
ID hjecimglpgbbajfigibmieancoegaema
공식 URL https://chrome.google.com/webstore/detail/which-host/hjecimglpgbbajfigibmieancoegaema
설명 show the IP of matched hostnames
파일 크기 52.62 KB
설치 횟수 48
현재 버전 0.2
최근 업데이트 2017-09-19
출시 날짜 2017-09-19
평점 5.00/5 총 1 개의 평점
개발자 ylzcylx
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/jdf2e/which_host
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Which host",
    "description": "show the IP of matched hostnames",
    "version": "0.2",
    "author": "loveky",
    "icons": {
        "48": "icon.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "setting.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "which_host.css"
            ],
            "js": [
                "which_host.js"
            ]
        }
    ],
    "permissions": [
        "webRequest",
        "tabs",
        "*:\/\/*\/"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "homepage_url": "https:\/\/github.com\/loveky\/which_host"
}