CookieSync: syncs cookies to localhost

Copies cookies to localhost

Was ist CookieSync: syncs cookies to localhost?

CookieSync: syncs cookies to localhost ist eine Chrome-Erweiterung, die von roel.noten entwickelt wurde, und ihr Hauptmerkmal ist "Copies cookies to localhost".

Erweiterungsscreenshots

screenshot

CookieSync: syncs cookies to localhost-Erweiterungs-CRX-Datei herunterladen

Laden Sie CookieSync: syncs cookies to localhost-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

                        This is an add-on which copies cookies to localhost.

This addon monitors all incoming cookies and all cookies matching a user defined name regex will be copied to the http://localhost domain.

It's primary here for developers that have code running on their localhost which connects to other services and need access to their cookies. The typical use case is a third-party login flow. In production the developer's code wil run on the same domain as the other services and have access to the cookies they set.
But when code is running on localhost (during development), those cookies are not accessible in the browser. This add on makes those cookies available on localhost, so available to the developer's local code.                    

Grundlegende Informationen zur Erweiterung

Name CookieSync: syncs cookies to localhost CookieSync: syncs cookies to localhost
ID gcmbgjbdleaopgcnhfijjmdkdkjhggdo
Offizielle URL https://chromewebstore.google.com/detail/cookiesync-syncs-cookies/gcmbgjbdleaopgcnhfijjmdkdkjhggdo
Beschreibung Copies cookies to localhost
Dateigröße 122 KB
Installationsanzahl 265
Aktuelle Version 1.4
Letztes Update 2021-11-13
Veröffentlichungsdatum 2021-11-12
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler roel.noten
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/roelnoten/cookiesync
Hilfeseite URL https://github.com/roelnoten/cookiesync
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CookieSync: syncs cookies to localhost",
    "version": "1.4",
    "description": "Copies cookies to localhost",
    "homepage_url": "https:\/\/github.com\/roelnoten\/cookiesync",
    "icons": {
        "48": "icon48.png",
        "96": "icon96.png",
        "128": "icon128.png"
    },
    "permissions": [
        "",
        "webRequest",
        "webRequestBlocking",
        "storage",
        "cookies"
    ],
    "browser_action": {
        "default_icon": "icon38.png",
        "default_title": "Copies cookies to localhost",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}