Localhost Cookie Sync

Sync cookies from a domain to your localhost

Vad är Localhost Cookie Sync?

Localhost Cookie Sync är en Chrome-tillägg utvecklad av Brett Merrifield, och dess huvudfunktion är "Sync cookies from a domain to your localhost".

Tilläggsskärmbilder

screenshot

Ladda ner Localhost Cookie Sync-förlängningens CRX-fil

Ladda ner Localhost Cookie Sync-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Localhost Cookie Sync Localhost Cookie Sync
ID mpbhlkmmkaamkbkpoammefkfckhgfbac
Officiell webbadress https://chromewebstore.google.com/detail/localhost-cookie-sync/mpbhlkmmkaamkbkpoammefkfckhgfbac
Beskrivning Sync cookies from a domain to your localhost
Filstorlek 22.04 KB
Antal Installationer 193
Aktuell Version 0.4
Senast Uppdaterad 2021-09-24
Publiceringsdatum 2021-09-21
Betyg 5.00/5 Totalt 4 Betyg
Utvecklare Brett Merrifield
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}