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ファイルをダウンロード

Which host拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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"
}