Which host

show the IP of matched hostnames

¿Qué es Which host?

Which host es una extensión de Chrome desarrollada por ylzcylx, y su función principal es "show the IP of matched hostnames".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Which host

Descarga archivos de extensión Which host en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        show the IP of matched hostnames.

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

Información Básica de la Extensión

Nombre Which host Which host
ID hjecimglpgbbajfigibmieancoegaema
URL Oficial https://chrome.google.com/webstore/detail/which-host/hjecimglpgbbajfigibmieancoegaema
Descripción show the IP of matched hostnames
Tamaño del Archivo 52.62 KB
Cantidad de Instalaciones 48
Versión Actual 0.2
Última Actualización 2017-09-19
Fecha de Publicación 2017-09-19
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador ylzcylx
Tipo de Pago free
Sitio Web de la Extensión https://github.com/jdf2e/which_host
Idiomas Soportados 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"
}