Sentry Cookie Sync

Sentry Cookie Sync

Sync cookies for local frontend development of sentry.io

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Sentry Cookie Sync",
  "version": "1.4.2",
  "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"
      ]
    }
  ]
}