Localhost Cookie Sync

Sync cookies from a domain to your localhost

Apa itu Localhost Cookie Sync?

Localhost Cookie Sync adalah ekstensi Chrome yang dikembangkan oleh Brett Merrifield, dan fitur utamanya adalah "Sync cookies from a domain to your localhost".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Localhost Cookie Sync

Unduh file ekstensi Localhost Cookie Sync dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Localhost Cookie Sync Localhost Cookie Sync
ID mpbhlkmmkaamkbkpoammefkfckhgfbac
URL Resmi https://chromewebstore.google.com/detail/localhost-cookie-sync/mpbhlkmmkaamkbkpoammefkfckhgfbac
Deskripsi Sync cookies from a domain to your localhost
Ukuran File 22.04 KB
Jumlah Instalasi 193
Versi Saat Ini 0.4
Terakhir Diperbarui 2021-09-24
Tanggal Publikasi 2021-09-21
Penilaian 5.00/5 Total 4 Penilaian
Pengembang Brett Merrifield
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}