Which host

show the IP of matched hostnames

Qu'est-ce que Which host ?

Which host est une extension Chrome développée par ylzcylx, et sa fonction principale est "show the IP of matched hostnames".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Which host

Téléchargez les fichiers d'extension Which host au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        show the IP of matched hostnames.

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

Informations de Base sur l'Extension

Nom Which host Which host
ID hjecimglpgbbajfigibmieancoegaema
URL Officiel https://chrome.google.com/webstore/detail/which-host/hjecimglpgbbajfigibmieancoegaema
Description show the IP of matched hostnames
Taille du Fichier 52.62 KB
Nombre d'Installations 48
Version Actuelle 0.2
Dernière Mise à Jour 2017-09-19
Date de Publication 2017-09-19
Évaluation 5.00/5 Total 1 Évaluations
Développeur ylzcylx
Type de Paiement free
Site Web de l'Extension https://github.com/jdf2e/which_host
Langues Prises en Charge 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"
}