Better YouTube Live

Better YouTube Live

Better chat experience and a simpler stream directory on YouTube Live and YouTube Gaming

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 Live",
  "version": "1.0.17",
  "description": "Better chat experience and a simpler stream directory on YouTube Live and YouTube Gaming",
  "browser_action": {
    "default_icon": "./assets/icon-512.png",
    "default_popup": "./dist/popup/index.html"
  },
  "options_ui": {
    "page": "./dist/options/index.html",
    "open_in_tab": true,
    "chrome_style": false
  },
  "background": {
    "page": "./dist/background/index.html",
    "persistent": false
  },
  "icons": {
    "16": "./assets/icon-512.png",
    "48": "./assets/icon-512.png",
    "128": "./assets/icon-512.png"
  },
  "permissions": [
    "notifications",
    "alarms",
    "storage",
    "*://*.youtube.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "js": [
        "./dist/contentScripts/index.global.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "dist/contentScripts/style.css",
    "assets/BYTL-white.svg",
    "assets/BYTL-full-white.svg"
  ]
}