Local Cache

Local Cache

Cache ajax requests to your local machine, making page loads faster and more predictable.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Local Cache",
  "description": "Cache ajax requests to your local machine, making page loads faster and more predictable.",
  "version": "1.0",
  "browser_action": {
    "default_icon": "icons/icon.png",
    "default_popup": "options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "main.js"
      ],
      "run_at": "document_start"
    }
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon.png"
  },
  "permissions": [
    "storage",
    "<all_urls>"
  ]
}