GoToChannel

GoToChannel

Return "Visit Channel" button in user option on live chat

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GoToChannel",
  "version": "1.1",
  "manifest_version": 2,
  "web_accessible_resources": [
    "modules/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://youtube.com/*",
        "*://*.youtube.com/*",
        "*://www.youtube.com/*",
        "*://youtu.be/*",
        "*://www.youtu.be/*",
        "*://*.youtu.be/*"
      ],
      "js": [
        "index.js"
      ],
      "all_frames": true
    }
  ],
  "icons": {
    "500": "asset/logo-500.png"
  },
  "browser_action": {
    "default_icon": {
      "500": "asset/logo-500.png"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}