Twitch Live Notification

Twitch Live Notification

Get notified of live broadcast you're following on Twitch

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Get notified of live broadcast you're following on Twitch",
  "version": "1.1.0",
  "manifest_version": 3,
  "name": "Twitch Live Notification",
  "action": {
    "default_icon": "/img/icon_16.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "/img/icon_16.png",
    "32": "/img/icon_32.png",
    "48": "/img/icon_48.png",
    "128": "/img/icon_128.png"
  },
  "background": {
    "service_worker": "background.bundle.js",
    "type": "module"
  },
  "options_ui": {
    "open_in_tab": true,
    "page": "options.html"
  },
  "permissions": [
    "storage",
    "alarms",
    "notifications",
    "identity"
  ],
  "host_permissions": [
    "https://*.twitch.tv/"
  ],
  "content_security_policy": {
    "extension_pages": "default-src 'self'; style-src 'self' 'unsafe-inline'; connect-src https://*.twitch.tv http://localhost:* ws://localhost:*;"
  }
}