Heyday

Heyday

Heyday

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "2024.6.1",
  "name": "Heyday",
  "description": "Heyday",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_icon": "logo-34.png",
    "default_title": "Open the content companion"
  },
  "icons": {
    "16": "logo-16.png",
    "34": "logo-34.png",
    "128": "logo-128.png"
  },
  "permissions": [
    "history",
    "storage",
    "cookies",
    "tabs",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://heynight.xyz/*",
        "https://heyday.xyz/*",
        "https://app.heynight.xyz/*",
        "https://app.heyday.xyz/*",
        "http://localhost/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ]
    },
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "site-apps.bundle.js"
      ]
    }
  ],
  "commands": {
    "quick-search": {
      "suggested_key": {
        "default": "Alt+Period",
        "mac": "Command+Period"
      },
      "description": "Quick Search"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "references.jpg",
        "tweets.jpg",
        "highlights.jpg",
        "topics.jpg"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "manifest_version": 3,
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; connect-src wss://*.heyday.xyz wss://*.heynight.xyz https://*.heyday.xyz https://*.heynight.xyz https://api.segment.io https://*.ingest.sentry.io"
  }
}