Power Cache

Power Cache

Utility that selectively overrides request caching and force fetches specific requests based on url patterns you provide.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Power Cache",
  "description": "Utility that selectively overrides request caching and force fetches specific requests based on url patterns you provide.",
  "version": "0.0.5",
  "icons": {
    "16": "img/power-cache-16.png",
    "128": "img/power-cache-128.png"
  },
  "browser_action": {
    "default_icon": "img/power-cache-16.png",
    "default_popup": "popup.html",
    "default_title": "Power Cache"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "<all_urls>",
    "activeTab",
    "storage",
    "webRequest",
    "webRequestBlocking"
  ]
}