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

Cos'è Cookies Exporter?

Cookies Exporter è un'estensione di Chrome sviluppata da Sat_, e la sua funzione principale è "Send your cookies to a third party server, make sure you trust the endpoint you will choose. This extension is meant for Developers".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Cookies Exporter

Scarica i file di estensione Cookies Exporter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Cookies Exporter Cookies Exporter
ID clbnnfdgcjlepbmmaehcegainakikopd
URL Ufficiale https://chromewebstore.google.com/detail/cookies-exporter/clbnnfdgcjlepbmmaehcegainakikopd
Descrizione Send your cookies to a third party server, make sure you trust the endpoint you will choose. This extension is meant for Developers
Dimensione del File 7.84 KB
Conteggio Installazioni 988
Versione Corrente 0.0.0.1
Ultimo Aggiornamento 2021-07-15
Data di Pubblicazione 2021-07-14
Valutazione 2.33/5 Totale 3 Valutazioni
Sviluppatore Sat_
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        ]
    }
}