BetterTTV

BetterTTV

BetterTTV enhances Twitch and YouTube with new features, emotes, and more.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "7.5.18",
  "manifest_version": 2,
  "name": "__MSG_EXTENSION_NAME__",
  "description": "__MSG_EXTENSION_DESCRIPTION__",
  "homepage_url": "https://betterttv.com",
  "default_locale": "en",
  "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?*"
      ]
    }
  ],
  "web_accessible_resources": [
    "betterttv.js",
    "betterttv.css"
  ],
  "permissions": [
    "*://*.twitch.tv/*"
  ],
  "optional_permissions": [
    "*://*.youtube.com/*"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.twitch.tv/*"
    ]
  },
  "icons": {
    "128": "icon.png"
  },
  "browser_action": {
    "default_popup": "settings.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}