Which host
show the IP of matched hostnames
What is Which host?
Which host is a Chrome extension developed by ylzcylx, and its main feature is "show the IP of matched hostnames".
Extension Screenshots
Download Which host Extension CRX File
Download Which host extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
show the IP of matched hostnames. Source code at https://github.com/jdf2e/which_host
Extension Basic Information
Name | |
ID | hjecimglpgbbajfigibmieancoegaema |
Official URL | https://chrome.google.com/webstore/detail/which-host/hjecimglpgbbajfigibmieancoegaema |
Description | show the IP of matched hostnames |
File Size | 52.62 KB |
Installation Count | 48 |
Current Version | 0.2 |
Last Updated | 2017-09-19 |
Publish Date | 2017-09-19 |
Rating | 5.00/5 Total 1 Ratings |
Developer | ylzcylx |
Payment Type | free |
Extension Website | https://github.com/jdf2e/which_host |
Supported Languages | 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" } |