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
官方網址 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"
}