Which host

Which host

show the IP of matched hostnames

Merlin
Additional files are visible only to premium users

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"
}