Which host

show the IP of matched hostnames

O que é Which host?

Which host é uma extensão do Chrome desenvolvida por ylzcylx, e sua principal característica é "show the IP of matched hostnames".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Which host

Baixe arquivos de extensão Which host no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        show the IP of matched hostnames.

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

Informações Básicas da Extensão

Nome Which host Which host
ID hjecimglpgbbajfigibmieancoegaema
URL Oficial https://chrome.google.com/webstore/detail/which-host/hjecimglpgbbajfigibmieancoegaema
Descrição show the IP of matched hostnames
Tamanho do Arquivo 52.62 KB
Contagem de Instalações 48
Versão Atual 0.2
Última Atualização 2017-09-19
Data de Publicação 2017-09-19
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor ylzcylx
Tipo de Pagamento free
Site da Extensão https://github.com/jdf2e/which_host
Idiomas Suportados 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"
}