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”。
擴展截圖
下載Sentry Cookie Sync擴展crx文件
下載Sentry Cookie Sync擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | kchlmkcdfohlmobgojmipoppgpedhijh |
官方網址 | 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" ] } ] } |