Which host
show the IP of matched hostnames
Vad är Which host?
Which host är en Chrome-tillägg utvecklad av ylzcylx, och dess huvudfunktion är "show the IP of matched hostnames".
Tilläggsskärmbilder
Ladda ner Which host-förlängningens CRX-fil
Ladda ner Which host-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
show the IP of matched hostnames. Source code at https://github.com/jdf2e/which_host
Grundläggande Information om Tillägg
Namn | |
ID | hjecimglpgbbajfigibmieancoegaema |
Officiell webbadress | https://chrome.google.com/webstore/detail/which-host/hjecimglpgbbajfigibmieancoegaema |
Beskrivning | show the IP of matched hostnames |
Filstorlek | 52.62 KB |
Antal Installationer | 48 |
Aktuell Version | 0.2 |
Senast Uppdaterad | 2017-09-19 |
Publiceringsdatum | 2017-09-19 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | ylzcylx |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/jdf2e/which_host |
Stödda Språk | 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" } |