Cookie-copy

Cookie-copy

一个Chrome插件,可以将当前窗口其它tab页的cookie复制到当前tab页。 A Chrome plugin that copies cookies from other tabs of the current window to the current…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Cookie-copy",
  "version": "0.0.4",
  "permissions": [
    "cookies",
    "tabs"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "sandbox": {
    "pages": [
      "sandbox.html"
    ]
  },
  "icons": {
    "16": "images/16.png",
    "32": "images/32.png",
    "48": "images/48.png"
  }
}