Localhost Cookie Sync

Sync cookies from a domain to your localhost

Wat is Localhost Cookie Sync?

Localhost Cookie Sync is een Chrome-extensie ontwikkeld door Brett Merrifield, en de belangrijkste functie is "Sync cookies from a domain to your localhost".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Localhost Cookie Sync

Download Localhost Cookie Sync-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Localhost Cookie Sync Localhost Cookie Sync
ID mpbhlkmmkaamkbkpoammefkfckhgfbac
Officiële URL https://chromewebstore.google.com/detail/localhost-cookie-sync/mpbhlkmmkaamkbkpoammefkfckhgfbac
Beschrijving Sync cookies from a domain to your localhost
Bestandsgrootte 22.04 KB
Aantal Installaties 193
Huidige Versie 0.4
Laatst Bijgewerkt 2021-09-24
Publicatiedatum 2021-09-21
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar Brett Merrifield
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    }
}