Localhost Cookie Sync

Sync cookies from a domain to your localhost

ما هو Localhost Cookie Sync؟

Localhost Cookie Sync هو إضافة Chrome تم تطويرها بواسطة Brett Merrifield، والميزة الرئيسية لها هي "Sync cookies from a domain to your localhost".

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

screenshot

تحميل ملف CRX للإضافة Localhost Cookie Sync

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

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

                        Keep certain cookies synced from a domain to your localhost. This can be a good tool to use by keeping things like authentication tokens from a domain synced to your local dev environment.                    

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

الاسم Localhost Cookie Sync Localhost Cookie Sync
ID mpbhlkmmkaamkbkpoammefkfckhgfbac
عنوان URL الرسمي https://chromewebstore.google.com/detail/localhost-cookie-sync/mpbhlkmmkaamkbkpoammefkfckhgfbac
الوصف Sync cookies from a domain to your localhost
حجم الملف 22.04 KB
عدد التثبيتات 193
النسخة الحالية 0.4
آخر تحديث 2021-09-24
تاريخ النشر 2021-09-21
تقييم 5.00/5 مجموع تقييمات 4
المطور Brett Merrifield
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Localhost Cookie Sync",
    "description": "Sync cookies from a domain to your localhost",
    "version": "0.4",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/cookie16.png",
            "32": "\/images\/cookie32.png",
            "48": "\/images\/cookie48.png",
            "128": "\/images\/cookie128.png"
        }
    },
    "permissions": [
        "cookies",
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "icons": {
        "16": "\/images\/cookie16.png",
        "32": "\/images\/cookie32.png",
        "48": "\/images\/cookie48.png",
        "128": "\/images\/cookie128.png"
    }
}