ExportThisCookie

ExportThisCookie

ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ExportThisCookie",
  "version": "0.0.0.2",
  "version_name": "Initial version",
  "description": "ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format",
  "default_locale": "en",
  "icons": {
    "128": "/cookie.png"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "/js/background.js"
    ]
  },
  "content_security_policy": "script-src 'self' https://www.googletagmanager.com; object-src 'self'",
  "browser_action": {
    "default_icon": "/cookie.png",
    "default_title": "ExportThisCookie",
    "default_popup": "/popup.html"
  }
}