Web Sound Equalizer

Web Sound Equalizer

The Sound Equalizer with Bass Booster is the ideal option to experience ultimate audio satisfaction directly within your browser!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_icon": {
      "64": "assets/icons/64.png",
      "128": "assets/icons/128.png",
      "256": "assets/icons/256.png"
    },
    "default_title": "__MSG_default_title__"
  },
  "default_locale": "en",
  "description": "__MSG_description__",
  "icons": {
    "64": "assets/icons/64.png",
    "128": "assets/icons/128.png",
    "256": "assets/icons/256.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "manifest_version": 3,
  "name": "__MSG_name__",
  "options_page": "settings.html",
  "permissions": [
    "tabCapture",
    "storage",
    "system.display"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*",
        "libs/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "short_name": "Equalizer",
  "version": "2.1.41",
  "version_name": "2.1.41",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}