Twitch GO

Twitch GO

Using the Twitch API for a more Compact and Quick view of your Following, Top Streams/Games.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Twitch GO",
  "description": "Using the Twitch API for a more Compact and Quick view of your Following, Top Streams/Games.",
  "version": "2.5.0",
  "manifest_version": 3,
  "icons": {
    "16": "./img/obj-16x16.png",
    "32": "./img/obj-32x32.png",
    "48": "./img/obj-48x48.png",
    "128": "./img/obj-128x128.png"
  },
  "action": {
    "default_popup": "main.html"
  },
  "background": {
    "service_worker": "notification.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.twitch.tv/*"
      ],
      "js": [
        "settings.js"
      ]
    }
  ],
  "host_permissions": [
    "https://localhost:7191/*",
    "https://ghostir.net/*",
    "https://api.twitch.tv/helix/*"
  ],
  "permissions": [
    "identity",
    "storage",
    "notifications",
    "alarms",
    "tabs"
  ]
}