Localhost Cookie Sync

Sync cookies from a domain to your localhost

Was ist Localhost Cookie Sync?

Localhost Cookie Sync ist eine Chrome-Erweiterung, die von Brett Merrifield entwickelt wurde, und ihr Hauptmerkmal ist "Sync cookies from a domain to your localhost".

Erweiterungsscreenshots

screenshot

Localhost Cookie Sync-Erweiterungs-CRX-Datei herunterladen

Laden Sie Localhost Cookie Sync-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Localhost Cookie Sync Localhost Cookie Sync
ID mpbhlkmmkaamkbkpoammefkfckhgfbac
Offizielle URL https://chromewebstore.google.com/detail/localhost-cookie-sync/mpbhlkmmkaamkbkpoammefkfckhgfbac
Beschreibung Sync cookies from a domain to your localhost
Dateigröße 22.04 KB
Installationsanzahl 193
Aktuelle Version 0.4
Letztes Update 2021-09-24
Veröffentlichungsdatum 2021-09-21
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler Brett Merrifield
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}