ExportThisCookie

ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format

Hvad er ExportThisCookie?

ExportThisCookie er en Chrome-udvidelse udviklet af https://exportthiscookie.com, og dens hovedfunktion er "ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format".

Udvidelsesskærmbilleder

screenshot
screenshot

Download ExportThisCookie-udvidelses-CRX-fil

Download ExportThisCookie-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn ExportThisCookie ExportThisCookie
ID dannllckdimllhkiplchkcaoheibealk
Officiel URL https://chromewebstore.google.com/detail/exportthiscookie/dannllckdimllhkiplchkcaoheibealk
Beskrivelse ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format
Filstørrelse 37.42 KB
Antal Installationer 2,000
Nuværende Version Initial version
Senest Opdateret 2023-04-16
Udgivelsesdato 2021-01-11
Bedømmelse 4.75/5 Samlet 4 Bedømmelser
Udvikler https://exportthiscookie.com
E-mail [email protected]
Betalingsmetode free
URL til Fortrolighedspolitik Side https://exportthiscookie.com/privacy
Understøttede Sprog 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"
    }
}