Sentry Cookie Sync
Sync cookies for local frontend development of sentry.io
Sentry Cookie Sync क्या है?
Sentry Cookie Sync Sentry.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Sync cookies for local frontend development of sentry.io"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Sentry Cookie Sync एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" ] } ] } |