Notifize

Notifize

Extension allows you to get notified about moments happening in your followed Twitch streams.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Notifize",
  "description": "Extension allows you to get notified about moments happening in your followed Twitch streams.",
  "version": "1.1.1",
  "content_scripts": [
    {
      "matches": [
        "https://www.twitch.tv/*"
      ],
      "js": [
        "main.js"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "images/logo16.png"
    },
    "default_title": "Notifize",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*.png",
        "images/*.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://id.twitch.tv/oauth2/authorize?response_type=token&redirect_uri=https://twitch.tv&client_id=4wvbl8vlwhojyml990pwqw9ghtyxgy&scope=clips:edit user:read:follows&state=c3ab8aa609ea11e793ae92361f002671"
  ],
  "icons": {
    "16": "images/logo16.png",
    "48": "images/logo48.png",
    "128": "images/logo128.png"
  }
}