Sound Setting

Sound Setting

Quickly change the volume, balance, and other sound parameters using a toolbar popup.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.1",
  "manifest_version": 3,
  "offline_enabled": true,
  "name": "Sound Setting",
  "short_name": "sound-setting",
  "permissions": [
    "storage",
    "scripting",
    "activeTab"
  ],
  "homepage_url": "https://worldaddons.com/sound-setting/",
  "description": "Quickly change the volume, balance, and other sound parameters using a toolbar popup.",
  "commands": {
    "_execute_action": {}
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Sound Setting",
    "default_popup": "source/popup/popup.html",
    "default_icon": {
      "16": "source/icons/16.png",
      "32": "source/icons/32.png",
      "48": "source/icons/48.png",
      "64": "source/icons/64.png"
    }
  },
  "icons": {
    "16": "source/icons/16.png",
    "32": "source/icons/32.png",
    "48": "source/icons/48.png",
    "64": "source/icons/64.png",
    "128": "source/icons/128.png"
  }
}