Save private window cookies

Save private window cookies

Save the cookies in private windows and restore them when a new private window is opened.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Save private window cookies",
  "description": "Save the cookies in private windows and restore them when a new private window is opened.",
  "version": "1.2.0",
  "homepage_url": "https://github.com/Adam777Z/save-private-window-cookies-web-browser-extension",
  "author": "Adam777",
  "icons": {
    "16": "icons/icon-16x16.png",
    "32": "icons/icon-32x32.png",
    "48": "icons/icon-48x48.png",
    "64": "icons/icon-64x64.png",
    "96": "icons/icon-96x96.png",
    "128": "icons/icon-128x128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "permissions": [
    "storage",
    "cookies",
    "downloads"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}