Sentry Cookie Sync

Sync cookies for local frontend development of sentry.io

Sentry Cookie Sync란 무엇입니까?

Sentry Cookie Sync은(는) Sentry.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Sync cookies for local frontend development of sentry.io"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Sentry Cookie Sync 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension will watch for anytime you visit a sentry domain. If you visit a production domain it'll note the org slug and copy the cookies you have into it's own local (nothing goes over the network) storage. Later, when you visit a development domain it'll see what org slug your using, and grab the cookies related to the org. So if you're logged into https://test-az.sentry.io you'll also be logged into https://test-az.dev.getsentry.net:7999 automatically!

This extension is open-source under the MIT license. Read the source code at https://github.com/getsentry/cookie-sync                    

확장 프로그램 기본 정보

이름 Sentry Cookie Sync Sentry Cookie Sync
ID kchlmkcdfohlmobgojmipoppgpedhijh
공식 URL https://chromewebstore.google.com/detail/sentry-cookie-sync/kchlmkcdfohlmobgojmipoppgpedhijh
설명 Sync cookies for local frontend development of sentry.io
파일 크기 1.18 MB
설치 횟수 70
현재 버전 1.4.0
최근 업데이트 2024-01-10
출시 날짜 2023-06-25
개발자 Sentry.io
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/getsentry/cookie-sync
도움말 페이지 URL https://github.com/getsentry/cookie-sync/issues
개인정보 보호 정책 페이지 URL https://sentry.io/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Sentry Cookie Sync",
    "version": "1.4.0",
    "icons": {
        "32": "assets\/icons\/favicon-32.png",
        "128": "assets\/icons\/favicon-128.png",
        "180": "assets\/icons\/favicon-180.png",
        "192": "assets\/icons\/favicon-192.png"
    },
    "description": "Sync cookies for local frontend development of sentry.io",
    "homepage_url": "https:\/\/github.com\/getsentry\/cookie-sync",
    "short_name": "Cookie Sync",
    "permissions": [
        "cookies",
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/*.sentry.io\/*",
        "https:\/\/*.sentry.dev\/*",
        "https:\/\/*.dev.getsentry.net\/*"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "author": "Ryan Albrecht",
    "minimum_chrome_version": "88",
    "action": {
        "default_popup": "popup.html",
        "default_title": "Sentry Cookie Sync"
    },
    "background": {
        "service_worker": "js\/serviceworker.bundle.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.sentry.dev\/auth\/login\/",
                "https:\/\/dev.getsentry.net:7999\/auth\/login\/",
                "https:\/\/*.dev.getsentry.net:7999\/auth\/login\/",
                "https:\/\/new.staging.getsentry.net\/auth\/login"
            ],
            "js": [
                "js\/contentScript.bundle.js"
            ]
        }
    ]
}