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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        ]
    }
}