Better YouTube Gaming

Better YouTube Gaming

BetterYTG enhances YouTube Gaming Livestream's with more emotes (Twitch, BTTV Emotes), new features, and more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Better YouTube Gaming",
  "short_name": "BetterYTG",
  "version": "0.3.0",
  "description": "BetterYTG enhances YouTube Gaming Livestream's with more emotes (Twitch, BTTV Emotes), new features, and more.",
  "icons": {
    "16": "assets/icons/BetterYTG_red_16.png",
    "48": "assets/icons/BetterYTG_red_48.png",
    "128": "assets/icons/BetterYTG_red_128.png"
  },
  "permissions": [
    "storage",
    "background",
    "tabs",
    "https://*.ytimg.com/*",
    "https://twitchemotes.com/*"
  ],
  "options_ui": {
    "page": "html/options.html",
    "chrome_style": true
  },
  "browser_action": {
    "default_title": "BetterYTG"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.gaming.youtube.com/*",
        "*://*.youtube.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "content.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "assets/emotes/*"
  ]
}