Copy Cookies

Copy cookies to clipboard

What is Copy Cookies?

Copy Cookies is a Chrome extension developed by MakKi, and its main feature is "Copy cookies to clipboard".

Extension Screenshots

screenshot

Download Copy Cookies Extension CRX File

Download Copy Cookies extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Copy all cookies used in the current tab to the clipboard.

This extension can be called by the shortcut key "Ctrl+Shift+K".
It works as like as the export feature of the EditThisCookie (http://editthiscookie.com/).
The copied cookie objects can be used by puppeteer (https://github.com/puppeteer/puppeteer).                    

Extension Basic Information

Name Copy Cookies Copy Cookies
ID jcbpglbplpblnagieibnemmkiamekcdg
Official URL https://chromewebstore.google.com/detail/copy-cookies/jcbpglbplpblnagieibnemmkiamekcdg
Description Copy cookies to clipboard
File Size 21.18 KB
Installation Count 38,655
Current Version 1.1.0
Last Updated 2023-03-20
Publish Date 2020-10-18
Rating 5.00/5 Total 3 Ratings
Developer MakKi
Email [email protected]
Payment Type free
Extension Website https://github.com/makiuchi-d/copycookies
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy Cookies",
    "description": "Copy cookies to clipboard",
    "version": "1.1.0",
    "manifest_version": 3,
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/cookies16.png",
        "32": "icons\/cookies32.png",
        "48": "icons\/cookies48.png",
        "128": "icons\/cookies128.png"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+K",
                "mac": "MacCtrl+Shift+K"
            },
            "description": "Copy cookies to clipboard"
        }
    },
    "permissions": [
        "cookies",
        "clipboardWrite"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}