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
Eメール [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"
        ]
    }
}