AuRo - audio output device router

AuRo - audio output device router

A *Chrome Extension* to pick an audio output device for HTML5 audio and video elements. In 0.3 saving deviceId for a current tab…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "AuRo - audio output device router",
  "short_name": "AuRo",
  "description": "",
  "author": "",
  "homepage_url": "https://github.com/ish-/AuRo",
  "version": "0.3",
  "version_name": "0.3",
  "minimum_chrome_version": "63.0",
  "browser_action": {
    "default_icon": {
      "128": "Icon128.png"
    },
    "default_title": "AuRo - choose your audio output device",
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "Icon128.png"
  },
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "activeTab",
    "storage",
    "tabs"
  ]
}