Chrome No Cache Refresh

Chrome No Cache Refresh

切换host后,只要点一下插件就能立即清空缓存,并自动刷新当前页面。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Chrome No Cache Refresh",
  "description": "切换host后,只要点一下插件就能立即清空缓存,并自动刷新当前页面。",
  "version": "0.0.5",
  "author": "xhay",
  "icons": {
    "64": "img/iconx64.png",
    "128": "img/iconx128.png",
    "256": "img/iconx256.png"
  },
  "background": {
    "scripts": [
      "index.js"
    ]
  },
  "options_page": "options.html",
  "browser_action": {
    "default_icon": {
      "19": "img/iconx19.png",
      "38": "img/iconx38.png"
    },
    "default_title": "Click to refresh"
  },
  "permissions": [
    "activeTab",
    "storage",
    "chrome://net-internals/#sockets",
    "http://*/*",
    "https://*/*"
  ],
  "homepage_url": "https://xhay1122.com"
}