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