Copy Cookies
Copy cookies to clipboard
Was ist Copy Cookies?
Copy Cookies ist eine Chrome-Erweiterung, die von MakKi entwickelt wurde, und ihr Hauptmerkmal ist "Copy cookies to clipboard".
Erweiterungsscreenshots
Copy Cookies-Erweiterungs-CRX-Datei herunterladen
Laden Sie Copy Cookies-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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).
Grundlegende Informationen zur Erweiterung
Name | Copy Cookies |
ID | jcbpglbplpblnagieibnemmkiamekcdg |
Offizielle URL | https://chromewebstore.google.com/detail/copy-cookies/jcbpglbplpblnagieibnemmkiamekcdg |
Beschreibung | Copy cookies to clipboard |
Dateigröße | 21.18 KB |
Installationsanzahl | 38,655 |
Aktuelle Version | 1.1.0 |
Letztes Update | 2023-03-20 |
Veröffentlichungsdatum | 2020-10-18 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | MakKi |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/makiuchi-d/copycookies |
Unterstützte Sprachen | 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": [ "*:\/\/*\/*" ] } |