CookieSync: syncs cookies to localhost

Copies cookies to localhost

O que é CookieSync: syncs cookies to localhost?

CookieSync: syncs cookies to localhost é uma extensão do Chrome desenvolvida por roel.noten, e sua principal característica é "Copies cookies to localhost".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão CookieSync: syncs cookies to localhost

Baixe arquivos de extensão CookieSync: syncs cookies to localhost no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome CookieSync: syncs cookies to localhost CookieSync: syncs cookies to localhost
ID gcmbgjbdleaopgcnhfijjmdkdkjhggdo
URL Oficial https://chromewebstore.google.com/detail/cookiesync-syncs-cookies/gcmbgjbdleaopgcnhfijjmdkdkjhggdo
Descrição Copies cookies to localhost
Tamanho do Arquivo 122 KB
Contagem de Instalações 265
Versão Atual 1.4
Última Atualização 2021-11-13
Data de Publicação 2021-11-12
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor roel.noten
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/roelnoten/cookiesync
URL da Página de Ajuda https://github.com/roelnoten/cookiesync
Idiomas Suportados 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"
        ]
    }
}