Alternate Player for Twitch.tv

Alternate Player for Twitch.tv

Alternate player of live broadcasts for Twitch.tv website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "browser_specific_settings": {
    "gecko": {
      "id": "twitch5@coolcmd",
      "strict_min_version": "52.0"
    }
  },
  "name": "Alternate Player for Twitch.tv",
  "short_name": "Alternate Player",
  "version": "2022.2.7.1",
  "description": "__MSG_M0001__",
  "icons": {
    "128": "manifest.svg"
  },
  "author": "Alexander Choporov (CoolCmd)",
  "default_locale": "en",
  "permissions": [
    "storage",
    "cookies",
    "webRequest",
    "webRequestBlocking",
    "clipboardWrite",
    "*://*.twitch.tv/*",
    "*://*.ttvnw.net/*",
    "*://*.akamaized.net/*"
  ],
  "web_accessible_resources": [
    "content.css"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.twitch.tv/*"
      ],
      "exclude_matches": [
        "https://www.twitch.tv/embed/*"
      ],
      "js": [
        "autoclaim.js"
      ],
      "all_frames": true,
      "run_at": "document_idle"
    },
    {
      "matches": [
        "https://www.twitch.tv/*",
        "https://m.twitch.tv/*"
      ],
      "js": [
        "common.js",
        "content.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ]
}