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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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