Volume Control

Volume Control

Allows volume control of audio and video elements in browser tabs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Volume Control",
  "version": "1.0.5",
  "description": "Allows volume control of audio and video elements in browser tabs.",
  "homepage_url": "https://github.com/Abev08/VolumeControlExtension",
  "icons": {
    "32": "icons/icon_32.png",
    "64": "icons/icon_64.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "32": "icons/icon_32.png",
      "64": "icons/icon_64.png"
    },
    "default_title": "Volume Control",
    "default_popup": "index.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{268d28fc-7dcb-49c6-9079-80363a9bc3fe}"
    }
  }
}