cookies.txt

cookies.txt

Exports all cookies to a Netscape HTTP Cookie File, as used by curl, wget, and youtube-dl, among others.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "cookies.txt",
  "icons": {
    "48": "icons/icon-48.png",
    "96": "icons/icon-96.png"
  },
  "version": "0.6",
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "developer": {
    "name": "Lennon Hill",
    "url": "https://github.com/hrdl-github/cookies-txt"
  },
  "browser_specific_settings": {
    "gecko": {
      "strict_min_version": "113.0",
      "id": "{12cf650b-1822-40aa-bff0-996df6948878}"
    },
    "gecko_android": {
      "strict_min_version": "121.0"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_title": "__MSG_buttonDescription__",
    "default_icon": {
      "16": "icons/icon-16.png",
      "32": "icons/icon-32.png",
      "48": "icons/icon-48.png",
      "64": "icons/icon-64.png",
      "96": "icons/icon-96.png",
      "128": "icons/icon-128.png"
    },
    "default_popup": "popup/choose_option.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "cookies",
    "downloads",
    "contextualIdentities",
    "<all_urls>",
    "tabs"
  ]
}