Toggle Cache

Toggle Cache

Disables or enables the browser cache.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Toggle Cache",
  "version": "1.2.0",
  "description": "__MSG_extensionDescription__",
  "browser_specific_settings": {
    "gecko": {
      "id": "{8397abea-6e82-4bb3-ad79-243bf490892a}",
      "strict_min_version": "57.0"
    }
  },
  "icons": {
    "24": "icons/togglecache.svg",
    "32": "icons/togglecache.svg",
    "50": "icons/togglecache.svg"
  },
  "background": {
    "scripts": [
      "iconupdater.js",
      "background.js"
    ]
  },
  "browser_action": {
    "browser_style": true,
    "default_icon": "icons/togglecache.svg",
    "default_title": "__MSG_button_title__",
    "theme_icons": [
      {
        "dark": "icons/togglecache.svg",
        "light": "icons/togglecache-light.svg",
        "size": 19
      }
    ]
  },
  "commands": {
    "_execute_browser_action": {}
  },
  "permissions": [
    "browserSettings"
  ],
  "default_locale": "en"
}