Sentry Cookie Sync
Sync cookies for local frontend development of sentry.io
Sentry Cookie Syncคืออะไร?
Sentry Cookie Sync เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sentry.io และคุณลักษณะหลักของมันคือ "Sync cookies for local frontend development of sentry.io"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Sentry Cookie Sync
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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" ] } ] } |