ExportThisCookie

ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format

ما هو ExportThisCookie؟

ExportThisCookie هو إضافة Chrome تم تطويرها بواسطة https://exportthiscookie.com، والميزة الرئيسية لها هي "ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة ExportThisCookie

قم بتنزيل ملفات الامتداد ExportThisCookie بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Export cookies in JSON format which can be directly imported in your code. 

Example: This comes handy while using python requests library.  This allows you export cookie in {"key":"value"} format.                    

معلومات أساسية عن التمديد

الاسم ExportThisCookie ExportThisCookie
ID dannllckdimllhkiplchkcaoheibealk
عنوان URL الرسمي https://chromewebstore.google.com/detail/exportthiscookie/dannllckdimllhkiplchkcaoheibealk
الوصف ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format
حجم الملف 37.42 KB
عدد التثبيتات 2,000
النسخة الحالية Initial version
آخر تحديث 2023-04-16
تاريخ النشر 2021-01-11
تقييم 4.75/5 مجموع تقييمات 4
المطور https://exportthiscookie.com
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة سياسة الخصوصية https://exportthiscookie.com/privacy
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ExportThisCookie",
    "version": "0.0.0.2",
    "version_name": "Initial version",
    "description": "ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format",
    "default_locale": "en",
    "icons": {
        "128": "\/cookie.png"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "\/js\/background.js"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/www.googletagmanager.com; object-src 'self'",
    "browser_action": {
        "default_icon": "\/cookie.png",
        "default_title": "ExportThisCookie",
        "default_popup": "\/popup.html"
    }
}