ExportThisCookie

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

What is ExportThisCookie?

ExportThisCookie is a Chrome extension developed by https://exportthiscookie.com, and its main feature is "ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format".

Extension Screenshots

screenshot
screenshot

Download ExportThisCookie Extension CRX File

Download ExportThisCookie extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name ExportThisCookie ExportThisCookie
ID dannllckdimllhkiplchkcaoheibealk
Official URL https://chromewebstore.google.com/detail/exportthiscookie/dannllckdimllhkiplchkcaoheibealk
Description ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format
File Size 37.42 KB
Installation Count 2,000
Current Version Initial version
Last Updated 2023-04-16
Publish Date 2021-01-11
Rating 4.75/5 Total 4 Ratings
Developer https://exportthiscookie.com
Email [email protected]
Payment Type free
Privacy Policy Page URL https://exportthiscookie.com/privacy
Supported Languages 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"
    }
}