CookieSync: syncs cookies to localhost

Copies cookies to localhost

什么是CookieSync: syncs cookies to localhost?

CookieSync: syncs cookies to localhost是由roel.noten开发的Chrome扩展程序,该扩展的主要功能是“Copies cookies to localhost”。

扩展截图

screenshot

下载CookieSync: syncs cookies to localhost扩展crx文件

下载CookieSync: syncs cookies to localhost扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 CookieSync: syncs cookies to localhost CookieSync: syncs cookies to localhost
ID gcmbgjbdleaopgcnhfijjmdkdkjhggdo
官方URL https://chromewebstore.google.com/detail/cookiesync-syncs-cookies/gcmbgjbdleaopgcnhfijjmdkdkjhggdo
简介 Copies cookies to localhost
文件大小 122 KB
安装次数 265
当前版本 1.4
更新时间 2021-11-13
上架时间 2021-11-12
评分 5.00/5 共2次评分
开发者 roel.noten
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/roelnoten/cookiesync
帮助页面URL https://github.com/roelnoten/cookiesync
支持的语言 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"
        ]
    }
}