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


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "minimum_chrome_version": "49",
  "name": "Alternate Player for Twitch.tv",
  "short_name": "Alternate Player",
  "version": "2022.2.7.1",
  "description": "__MSG_M0001__",
  "icons": {
    "128": "manifest.png"
  },
  "author": "Alexander Choporov (CoolCmd)",
  "developer": {
    "name": "Alexander Choporov (CoolCmd)"
  },
  "default_locale": "en",
  "incognito": "split",
  "content_security_policy": "script-src 'self' 'wasm-eval'; object-src 'self'",
  "permissions": [
    "storage",
    "cookies",
    "webRequest",
    "webRequestBlocking",
    "management",
    "system.memory",
    "system.cpu",
    "*://*.twitch.tv/*",
    "*://*.ttvnw.net/*",
    "*://*.akamaized.net/*"
  ],
  "optional_permissions": [
    "contentSettings"
  ],
  "web_accessible_resources": [
    "player.html",
    "content.css"
  ],
  "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"
    }
  ]
}