Export cookie JSON file for Puppeteer

Export cookie JSON file for Puppeteer

Export a cookie JSON file that can be imported by Puppeteer.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_ext_name__",
  "description": "__MSG_ext_desc__",
  "version": "0.2.0",
  "icons": {
    "16": "icon/icon_16.png",
    "128": "icon/icon_128.png"
  },
  "default_locale": "ja",
  "browser_action": {
    "default_icon": {
      "19": "icon/icon_19.png",
      "38": "icon/icon_38.png"
    },
    "default_title": "__MSG_ext_name__",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "permissions": [
    "tabs",
    "cookies",
    "http://*/*",
    "https://*/*"
  ]
}