ExportThisCookie

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

Co je ExportThisCookie?

ExportThisCookie je rozšíření Chrome vyvinuté https://exportthiscookie.com, a jeho hlavní funkcí je „ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření ExportThisCookie

Stáhněte si soubory rozšíření ExportThisCookie ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název ExportThisCookie ExportThisCookie
ID dannllckdimllhkiplchkcaoheibealk
Oficiální URL https://chromewebstore.google.com/detail/exportthiscookie/dannllckdimllhkiplchkcaoheibealk
Popis ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format
Velikost souboru 37.42 KB
Počet instalací 2,000
Aktuální Verze Initial version
Poslední Aktualizace 2023-04-16
Datum Vydání 2021-01-11
Hodnocení 4.75/5 Celkem 4 Hodnocení
Vývojář https://exportthiscookie.com
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://exportthiscookie.com/privacy
Podporované Jazyky 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"
    }
}