Cookies Exporter

Send your cookies to a third party server, make sure you trust the endpoint you will choose. This extension is meant for Developers

What is Cookies Exporter?

Cookies Exporter is a Chrome extension developed by Sat_, and its main feature is "Send your cookies to a third party server, make sure you trust the endpoint you will choose. This extension is meant for Developers".

Extension Screenshots

screenshot
screenshot

Download Cookies Exporter Extension CRX File

Download Cookies Exporter 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

                        This extension will help you debug your application, you can decide when and where to send your cookies. 

Usage:
Click the extension icon, you will be asked two questions, the first is which domain's cookies you want to export and the second is where you want to send them. 

At this point your browser will send a XHR request to the endpoint you have chosen with all your cookies in a Json Object.
For your convenience the user agent is also added to the Json object                    

Extension Basic Information

Name Cookies Exporter Cookies Exporter
ID clbnnfdgcjlepbmmaehcegainakikopd
Official URL https://chromewebstore.google.com/detail/cookies-exporter/clbnnfdgcjlepbmmaehcegainakikopd
Description Send your cookies to a third party server, make sure you trust the endpoint you will choose. This extension is meant for Developers
File Size 7.84 KB
Installation Count 988
Current Version 0.0.0.1
Last Updated 2021-07-15
Publish Date 2021-07-14
Rating 2.33/5 Total 3 Ratings
Developer Sat_
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cookies Exporter",
    "manifest_version": 2,
    "version": "0.0.0.1",
    "description": "Send your cookies to a third party server, make sure you trust the endpoint you will choose. This extension is meant for Developers",
    "permissions": [
        "cookies",
        ""
    ],
    "browser_action": [],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    }
}