Volume Control

Volume Control

Adds a volume control for the current site, that can also boost the volume beyond the normal range.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Volume Control",
  "version": "3",
  "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": "ico.svg"
  },
  "optional_permissions": [
    "<all_urls>",
    "activeTab"
  ],
  "permissions": [
    "storage",
    "activeTab"
  ],
  "action": {
    "default_icon": "ico.svg",
    "default_title": "Volume Control",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ],
      "exclude_globs": [
        "https://www.shadertoy.com/"
      ],
      "js": [
        "lib/arrive.min.js",
        "cs.js"
      ],
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "commands": {
    "_execute_action": {
      "description": "Open volume control"
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{57e8684d-5ae8-47d6-93c9-f870ef0e40a3}"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}