YT audio channel switch

YT audio channel switch

Switch between left and right channels with keyboard shortcuts.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "YT channel switch",
  "version": "1.0",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "description": "Switch between left and right channels with keyboard shortcuts.",
  "icons": {
    "48": "icons/border-48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "permissions": [
    "tabs"
  ],
  "action": {
    "default_title": "YT channel switch",
    "default_popup": "index.html"
  }
}