Audio Equalizer Plus

Audio Equalizer Plus

The Audio Equalizer with Volume Booster extension that provides users with a great way to customize music listening experience.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_description__",
  "version": "1.4.0",
  "manifest_version": 3,
  "options_page": "options.html",
  "default_locale": "en",
  "icons": {
    "128": "images/icon-128.png"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_icon": "images/icon-48.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "unlimitedStorage",
    "notifications",
    "gcm",
    "tabCapture"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "background.js"
  }
}