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 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 फ़ाइल डाउनलोड करें

crx प्रारूप में Cookies Exporter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
        ]
    }
}