Copy Cookies

Copy cookies to clipboard

Wat is Copy Cookies?

Copy Cookies is een Chrome-extensie ontwikkeld door MakKi, en de belangrijkste functie is "Copy cookies to clipboard".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Copy Cookies

Download Copy Cookies-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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).                    

Basisinformatie over de Extensie

Naam Copy Cookies Copy Cookies
ID jcbpglbplpblnagieibnemmkiamekcdg
Officiële URL https://chromewebstore.google.com/detail/copy-cookies/jcbpglbplpblnagieibnemmkiamekcdg
Beschrijving Copy cookies to clipboard
Bestandsgrootte 21.18 KB
Aantal Installaties 38,655
Huidige Versie 1.1.0
Laatst Bijgewerkt 2023-03-20
Publicatiedatum 2020-10-18
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar MakKi
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/makiuchi-d/copycookies
Ondersteunde Talen 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": [
        "*:\/\/*\/*"
    ]
}