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
官方網址 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"
        ]
    }
}