CookieSync: syncs cookies to localhost

Copies cookies to localhost

Qu'est-ce que CookieSync: syncs cookies to localhost ?

CookieSync: syncs cookies to localhost est une extension Chrome développée par roel.noten, et sa fonction principale est "Copies cookies to localhost".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension CookieSync: syncs cookies to localhost

Téléchargez les fichiers d'extension CookieSync: syncs cookies to localhost au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom CookieSync: syncs cookies to localhost CookieSync: syncs cookies to localhost
ID gcmbgjbdleaopgcnhfijjmdkdkjhggdo
URL Officiel https://chromewebstore.google.com/detail/cookiesync-syncs-cookies/gcmbgjbdleaopgcnhfijjmdkdkjhggdo
Description Copies cookies to localhost
Taille du Fichier 122 KB
Nombre d'Installations 265
Version Actuelle 1.4
Dernière Mise à Jour 2021-11-13
Date de Publication 2021-11-12
Évaluation 5.00/5 Total 2 Évaluations
Développeur roel.noten
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/roelnoten/cookiesync
URL de la Page d'Aide https://github.com/roelnoten/cookiesync
Langues Prises en Charge 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"
        ]
    }
}