Localhost Cookie Sync

Sync cookies from a domain to your localhost

Qu'est-ce que Localhost Cookie Sync ?

Localhost Cookie Sync est une extension Chrome développée par Brett Merrifield, et sa fonction principale est "Sync cookies from a domain to your localhost".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Localhost Cookie Sync

Téléchargez les fichiers d'extension Localhost Cookie Sync 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

                        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.                    

Informations de Base sur l'Extension

Nom Localhost Cookie Sync Localhost Cookie Sync
ID mpbhlkmmkaamkbkpoammefkfckhgfbac
URL Officiel https://chromewebstore.google.com/detail/localhost-cookie-sync/mpbhlkmmkaamkbkpoammefkfckhgfbac
Description Sync cookies from a domain to your localhost
Taille du Fichier 22.04 KB
Nombre d'Installations 193
Version Actuelle 0.4
Dernière Mise à Jour 2021-09-24
Date de Publication 2021-09-21
Évaluation 5.00/5 Total 4 Évaluations
Développeur Brett Merrifield
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}