Localhost Cookie Sync

Localhost Cookie Sync

Sync cookies from a domain to your localhost

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Localhost Cookie Sync",
  "description": "Sync cookies from a domain to your localhost",
  "version": "0.4",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/cookie16.png",
      "32": "/images/cookie32.png",
      "48": "/images/cookie48.png",
      "128": "/images/cookie128.png"
    }
  },
  "permissions": [
    "cookies",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "16": "/images/cookie16.png",
    "32": "/images/cookie32.png",
    "48": "/images/cookie48.png",
    "128": "/images/cookie128.png"
  }
}