Localhost Cookie Sync

Sync cookies from a domain to your localhost

Cos'è Localhost Cookie Sync?

Localhost Cookie Sync è un'estensione di Chrome sviluppata da Brett Merrifield, e la sua funzione principale è "Sync cookies from a domain to your localhost".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Localhost Cookie Sync

Scarica i file di estensione Localhost Cookie Sync in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Localhost Cookie Sync Localhost Cookie Sync
ID mpbhlkmmkaamkbkpoammefkfckhgfbac
URL Ufficiale https://chromewebstore.google.com/detail/localhost-cookie-sync/mpbhlkmmkaamkbkpoammefkfckhgfbac
Descrizione Sync cookies from a domain to your localhost
Dimensione del File 22.04 KB
Conteggio Installazioni 193
Versione Corrente 0.4
Ultimo Aggiornamento 2021-09-24
Data di Pubblicazione 2021-09-21
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore Brett Merrifield
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}