ExportThisCookie
ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format
Cos'è ExportThisCookie?
ExportThisCookie è un'estensione di Chrome sviluppata da https://exportthiscookie.com, e la sua funzione principale è "ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione ExportThisCookie
Scarica i file di estensione ExportThisCookie in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | ExportThisCookie |
ID | dannllckdimllhkiplchkcaoheibealk |
URL Ufficiale | https://chromewebstore.google.com/detail/exportthiscookie/dannllckdimllhkiplchkcaoheibealk |
Descrizione | ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format |
Dimensione del File | 37.42 KB |
Conteggio Installazioni | 2,000 |
Versione Corrente | Initial version |
Ultimo Aggiornamento | 2023-04-16 |
Data di Pubblicazione | 2021-01-11 |
Valutazione | 4.75/5 Totale 4 Valutazioni |
Sviluppatore | https://exportthiscookie.com |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://exportthiscookie.com/privacy |
Lingue Supportate | 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" } } |