ExportThisCookie
ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format
Was ist ExportThisCookie?
ExportThisCookie ist eine Chrome-Erweiterung, die von https://exportthiscookie.com entwickelt wurde, und ihr Hauptmerkmal ist "ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format".
Erweiterungsscreenshots
ExportThisCookie-Erweiterungs-CRX-Datei herunterladen
Laden Sie ExportThisCookie-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
Export cookies in JSON format which can be directly imported in your code. Example: This comes handy while using python requests library. This allows you export cookie in {"key":"value"} format.
Grundlegende Informationen zur Erweiterung
Name | ExportThisCookie |
ID | dannllckdimllhkiplchkcaoheibealk |
Offizielle URL | https://chromewebstore.google.com/detail/exportthiscookie/dannllckdimllhkiplchkcaoheibealk |
Beschreibung | ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format |
Dateigröße | 37.42 KB |
Installationsanzahl | 2,000 |
Aktuelle Version | Initial version |
Letztes Update | 2023-04-16 |
Veröffentlichungsdatum | 2021-01-11 |
Bewertung | 4.75/5 Insgesamt 4 Bewertungen |
Entwickler | https://exportthiscookie.com |
[email protected] | |
Zahlungsart | free |
URL der Datenschutzrichtlinien-Seite | https://exportthiscookie.com/privacy |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ExportThisCookie", "version": "0.0.0.2", "version_name": "Initial version", "description": "ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format", "default_locale": "en", "icons": { "128": "\/cookie.png" }, "permissions": [ "webRequest", "webRequestBlocking", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "\/js\/background.js" ] }, "content_security_policy": "script-src 'self' https:\/\/www.googletagmanager.com; object-src 'self'", "browser_action": { "default_icon": "\/cookie.png", "default_title": "ExportThisCookie", "default_popup": "\/popup.html" } } |