Stream Clap

Stream Clap

Extension embeds streamclap.com into Twitch.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Stream Clap",
  "description": "Extension embeds streamclap.com into Twitch.",
  "version": "1.0.0",
  "content_scripts": [
    {
      "matches": [
        "https://www.twitch.tv/*"
      ],
      "js": [
        "main.js"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "images/logo16.png"
    },
    "default_title": "Stream Clap"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*.png",
        "images/*.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "16": "images/logo16.png",
    "48": "images/logo48.png",
    "128": "images/logo128.png"
  }
}