ExportThisCookie
ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format
Qu'est-ce que ExportThisCookie ?
ExportThisCookie est une extension Chrome développée par https://exportthiscookie.com, et sa fonction principale est "ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension ExportThisCookie
Téléchargez les fichiers d'extension ExportThisCookie au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | ExportThisCookie |
ID | dannllckdimllhkiplchkcaoheibealk |
URL Officiel | https://chromewebstore.google.com/detail/exportthiscookie/dannllckdimllhkiplchkcaoheibealk |
Description | ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format |
Taille du Fichier | 37.42 KB |
Nombre d'Installations | 2,000 |
Version Actuelle | Initial version |
Dernière Mise à Jour | 2023-04-16 |
Date de Publication | 2021-01-11 |
Évaluation | 4.75/5 Total 4 Évaluations |
Développeur | https://exportthiscookie.com |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://exportthiscookie.com/privacy |
Langues Prises en Charge | 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" } } |