Which host
show the IP of matched hostnames
Cos'è Which host?
Which host è un'estensione di Chrome sviluppata da ylzcylx, e la sua funzione principale è "show the IP of matched hostnames".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Which host
Scarica i file di estensione Which host in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
show the IP of matched hostnames. Source code at https://github.com/jdf2e/which_host
Informazioni di Base sull'Estensione
Nome | |
ID | hjecimglpgbbajfigibmieancoegaema |
URL Ufficiale | https://chrome.google.com/webstore/detail/which-host/hjecimglpgbbajfigibmieancoegaema |
Descrizione | show the IP of matched hostnames |
Dimensione del File | 52.62 KB |
Conteggio Installazioni | 48 |
Versione Corrente | 0.2 |
Ultimo Aggiornamento | 2017-09-19 |
Data di Pubblicazione | 2017-09-19 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | ylzcylx |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/jdf2e/which_host |
Lingue Supportate | 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" } |