Twitch Live Extension

Twitch Live Extension

A browser extension that lists your live followed streamers and sends notifications when they start a new stream

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Twitch Live Extension",
  "description": "A browser extension that lists your live followed streamers and sends notifications when they start a new stream",
  "version": "4.2.1",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "action": {
    "default_popup": "index.html",
    "default_title": "Twitch Live Extension",
    "default_icon": "icon.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "https://id.twitch.tv/oauth2/*",
    "https://api.twitch.tv/helix/*"
  ],
  "permissions": [
    "identity",
    "notifications",
    "alarms",
    "storage",
    "idle"
  ]
}