ExportThisCookie
ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format
Wat is ExportThisCookie?
ExportThisCookie is een Chrome-extensie ontwikkeld door https://exportthiscookie.com, en de belangrijkste functie is "ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format".
Extensie Screenshots
Download het CRX-bestand van de extensie ExportThisCookie
Download ExportThisCookie-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
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. Basisinformatie over de Extensie
| Naam | |
| ID | dannllckdimllhkiplchkcaoheibealk |
| Officiële URL | https://chromewebstore.google.com/detail/exportthiscookie/dannllckdimllhkiplchkcaoheibealk |
| Beschrijving | ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format |
| Bestandsgrootte | 37.42 KB |
| Aantal Installaties | 2,000 |
| Huidige Versie | Initial version |
| Laatst Bijgewerkt | 2023-04-16 |
| Publicatiedatum | 2021-01-11 |
| Beoordeling | 4.75/5 Totaal 4 Beoordelingen |
| Ontwikkelaar | https://exportthiscookie.com |
| [email protected] | |
| Betalingswijze | free |
| URL van de Privacybeleid Pagina | https://exportthiscookie.com/privacy |
| Ondersteunde Talen | 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"
}
} | |