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

Τι είναι το Cookies Exporter;

Το Cookies Exporter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Sat_, και η κύρια λειτουργία του είναι "Send your cookies to a third party server, make sure you trust the endpoint you will choose. This extension is meant for Developers".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Cookies Exporter

Λήψη αρχείων επέκτασης Cookies Exporter σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Cookies Exporter Cookies Exporter
ID clbnnfdgcjlepbmmaehcegainakikopd
Επίσημο URL https://chromewebstore.google.com/detail/cookies-exporter/clbnnfdgcjlepbmmaehcegainakikopd
Περιγραφή Send your cookies to a third party server, make sure you trust the endpoint you will choose. This extension is meant for Developers
Μέγεθος Αρχείου 7.84 KB
Αριθμός Εγκαταστάσεων 988
Τρέχουσα Έκδοση 0.0.0.1
Τελευταία Ενημέρωση 2021-07-15
Ημερομηνία Δημοσίευσης 2021-07-14
Αξιολόγηση 2.33/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Sat_
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
        ]
    }
}