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

Co je Cookies Exporter?

Cookies Exporter je rozšíření Chrome vyvinuté Sat_, a jeho hlavní funkcí je „Send your cookies to a third party server, make sure you trust the endpoint you will choose. This extension is meant for Developers“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Cookies Exporter

Stáhněte si soubory rozšíření Cookies Exporter 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í

                        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                    

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

Název Cookies Exporter Cookies Exporter
ID clbnnfdgcjlepbmmaehcegainakikopd
Oficiální URL https://chromewebstore.google.com/detail/cookies-exporter/clbnnfdgcjlepbmmaehcegainakikopd
Popis Send your cookies to a third party server, make sure you trust the endpoint you will choose. This extension is meant for Developers
Velikost souboru 7.84 KB
Počet instalací 988
Aktuální Verze 0.0.0.1
Poslední Aktualizace 2021-07-15
Datum Vydání 2021-07-14
Hodnocení 2.33/5 Celkem 3 Hodnocení
Vývojář Sat_
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
        ]
    }
}