Cookie Editor

Cookie Editor

Simple yet powerful Cookie Editor that allow you to quickly create, edit and delete cookies without leaving your tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "__MSG_ext_name__",
  "name": "__MSG_ext_name__",
  "description": "__MSG_ext_description__",
  "icons": {
    "16": "icons/16x16.png",
    "32": "icons/32x32.png",
    "48": "icons/48x48.png",
    "128": "icons/128x128.png"
  },
  "action": {
    "default_icon": {
      "16": "icons/16x16.png",
      "32": "icons/32x32.png",
      "48": "icons/48x48.png",
      "128": "icons/128x128.png"
    }
  },
  "manifest_version": 3,
  "version": "1.0.0.0",
  "default_locale": "en",
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "permissions": [
    "cookies",
    "sidePanel",
    "tabs"
  ],
  "side_panel": {
    "default_path": "pages/sidepanel.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "static/content_scripts/main.js"
      ],
      "css": [
        "static/content_css/main.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "svg/*",
        "static/*",
        "pages/*",
        "gifs/*",
        "fonts/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';script-src-elem 'self' "
  },
  "background": {
    "service_worker": "service_worker/background.bundle.js"
  }
}