Bass Booster - Сontrol your sound

Boost your video or music volume with Volume Booster! Control both volume and bass effortlessly
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "__MSG_app_name__",
  "description": "__MSG_app_description__",
  "default_locale": "en",
  "version": "2.6",
  "icons": {
    "16": "img/icon-logo.png",
    "32": "img/icon-logo.png",
    "48": "img/icon-logo.png",
    "128": "img/icon-logo.png"
  },
  "background": {
    "service_worker": "scripts/bg.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/libs/jquery.min.js",
        "scripts/content.js"
      ],
      "css": [
        "css/content.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "action": {
    "default_icon": {
      "19": "img/icon-logo.png",
      "38": "img/icon-logo.png"
    },
    "default_title": "__MSG_app_name__"
  },
  "permissions": [
    "tabCapture",
    "storage",
    "activeTab",
    "system.display"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}