Youtube Output Devices

Youtube Output Devices

This extension allows you to select an output audio device for each youtube video you are watching.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Youtube Output Devices",
  "short_name": "Yt Devices",
  "version": "0.2",
  "manifest_version": 2,
  "description": "This extension allows you to select an output audio device for each youtube video you are watching.",
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*",
        "http://*.youtube.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "http://*.youtube.com/*",
    "https://*.youtube.com/*"
  ],
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "120": "icons/icon120.png"
  }
}