Host Utils

Host Utils

Host 相关的工具,包括:清理Host缓存,查看Host现在的Ip等等

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Host Utils",
  "version": "1.0.0",
  "description": "Host 相关的工具,包括:清理Host缓存,查看Host现在的Ip等等",
  "author": "mocha",
  "icons": {
    "16": "icon/icon-16.png",
    "32": "icon/icon-32.png",
    "128": "icon/icon-128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icon/icon-128.png"
  },
  "permissions": [
    "tabs",
    "chrome://net-internals/",
    "*://*/",
    "webRequest",
    "contextMenus"
  ],
  "homepage_url": "http://git.oschina.net/mocha/chrome-host"
}