Container cookie duplicator

Automatically duplicate specific cookie domains to all your multi-account containers
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Container cookie duplicator",
  "description": "Automatically duplicate specific cookie domains to all your multi-account containers",
  "version": "0.0.1",
  "permissions": [
    "<all_urls>",
    "cookies",
    "storage",
    "contextualIdentities"
  ],
  "icons": {
    "64": "icons/icon.png"
  },
  "background": {
    "scripts": [
      "background_script.js"
    ]
  },
  "options_ui": {
    "page": "options/index.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{c67d50c5-5933-46ce-accf-707e759df17e}"
    }
  }
}