Which host

show the IP of matched hostnames

Hvad er Which host?

Which host er en Chrome-udvidelse udviklet af ylzcylx, og dens hovedfunktion er "show the IP of matched hostnames".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Which host-udvidelses-CRX-fil

Download Which host-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        show the IP of matched hostnames.

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

Grundlæggende oplysninger om udvidelsen

Navn Which host Which host
ID hjecimglpgbbajfigibmieancoegaema
Officiel URL https://chrome.google.com/webstore/detail/which-host/hjecimglpgbbajfigibmieancoegaema
Beskrivelse show the IP of matched hostnames
Filstørrelse 52.62 KB
Antal Installationer 48
Nuværende Version 0.2
Senest Opdateret 2017-09-19
Udgivelsesdato 2017-09-19
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler ylzcylx
Betalingsmetode free
Udvidelseswebsted https://github.com/jdf2e/which_host
Understøttede Sprog 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"
}