MyCache

MyCache

MyCache automatically stores saved copies of the pages you visit.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "MyCache",
  "description": "MyCache automatically stores saved copies of the pages you visit.",
  "version": "3.0.0",
  "icons": {
    "16": "images/mycache_icon_128.png",
    "48": "images/mycache_icon_128.png",
    "128": "images/mycache_logo_128.png"
  },
  "incognito": "not_allowed",
  "options_ui": {
    "page": "html/options.html"
  },
  "action": {
    "default_icon": {
      "16": "images/mycache_icon_128.png",
      "48": "images/mycache_icon_128.png"
    },
    "default_popup": "html/popup.html"
  },
  "background": {
    "service_worker": "dist/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "dist/messenger.js"
      ]
    }
  ],
  "permissions": [
    "browsingData",
    "unlimitedStorage",
    "webNavigation",
    "tabs",
    "storage",
    "background",
    "pageCapture",
    "offscreen"
  ]
}