BetterTTV

BetterTTV

Enhances Twitch and YouTube with new features, emotes, and more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "version": "7.5.20",
  "manifest_version": 2,
  "name": "__MSG_EXTENSION_NAME__",
  "description": "__MSG_EXTENSION_DESCRIPTION__",
  "author": "NightDev, LLC",
  "homepage_url": "https://betterttv.com",
  "default_locale": "en",
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "*://*.twitch.tv/*"
  ],
  "optional_permissions": [
    "*://*.youtube.com/*"
  ],
  "web_accessible_resources": [
    "betterttv.js",
    "betterttv.css"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "run.js"
      ],
      "matches": [
        "*://*.twitch.tv/*"
      ],
      "exclude_matches": [
        "*://*.twitch.tv/*.html",
        "*://*.twitch.tv/*.html?*",
        "*://*.twitch.tv/*.htm",
        "*://*.twitch.tv/*.htm?*"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "77.0"
    }
  }
}