AudioPick

AudioPick

Pick a preferred audio output device for HTML5 audio and video elements

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "AudioPick",
  "short_name": "AudioPick",
  "description": "Pick a preferred audio output device for HTML5 audio and video elements",
  "author": "[email protected]",
  "homepage_url": "https://rain-fighters.github.io/AudioPick/",
  "version": "0.3.10",
  "version_name": "0.3.10",
  "action": {
    "default_icon": {
      "16": "APV3_Icon_2d_2c_16.png",
      "32": "APV3_Icon_2d_2c_32.png",
      "48": "APV3_Icon_2d_2c_48.png",
      "128": "APV3_Icon_2d_2c_128.png"
    },
    "default_title": "AudioPick",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "APV3_Icon_2d_2c_16.png",
    "32": "APV3_Icon_2d_2c_32.png",
    "48": "APV3_Icon_2d_2c_48.png",
    "128": "APV3_Icon_2d_2c_128.png"
  },
  "host_permissions": [
    "https://*/*"
  ],
  "background": {
    "service_worker": "worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "main.js"
      ],
      "world": "MAIN",
      "all_frames": false
    },
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "world": "ISOLATED",
      "all_frames": false
    }
  ],
  "permissions": [
    "contentSettings",
    "storage",
    "scripting",
    "activeTab",
    "favicon"
  ]
}