Volume Control [Boost volume]

Volume Control [Boost volume]

Boost, or lower your volume up to or down 32 DB.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Volume Control",
  "version": "2.6",
  "description": "Adds a volume control for the current site, that can also boost the volume beyond the normal range.",
  "homepage_url": "https://github.com/Chaython/volumecontrol",
  "icons": {
    "96": "icon.png"
  },
  "optional_permissions": [
    "<all_urls>",
    "activeTab"
  ],
  "action": {
    "default_icon": "icon.png",
    "default_title": "Volume Control",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ],
      "js": [
        "lib/arrive.min.js",
        "cs.js"
      ],
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "commands": {
    "_execute_action": {
      "description": "Open volume control"
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{57e8684d-5ae8-47d6-93c9-f870ef0e40a3}"
    }
  }
}