Localhost Cookie Sync

Sync cookies from a domain to your localhost

What is Localhost Cookie Sync?

Localhost Cookie Sync is a Chrome extension developed by Brett Merrifield, and its main feature is "Sync cookies from a domain to your localhost".

Extension Screenshots

screenshot

Download Localhost Cookie Sync Extension CRX File

Download Localhost Cookie Sync extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Localhost Cookie Sync Localhost Cookie Sync
ID mpbhlkmmkaamkbkpoammefkfckhgfbac
Official URL https://chromewebstore.google.com/detail/localhost-cookie-sync/mpbhlkmmkaamkbkpoammefkfckhgfbac
Description Sync cookies from a domain to your localhost
File Size 22.04 KB
Installation Count 193
Current Version 0.4
Last Updated 2021-09-24
Publish Date 2021-09-21
Rating 5.00/5 Total 4 Ratings
Developer Brett Merrifield
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}