Surround sound for music and film

Surround sound for music and film

All audio streams from the browser are converted into surround sound with a fully immersive effect

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "0.0.12",
  "manifest_version": 3,
  "default_locale": "en",
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "tabCapture",
    "tabs"
  ],
  "action": {},
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true,
      "match_origin_as_fallback": true
    }
  ],
  "icons": {
    "16": "icon-16.png",
    "19": "icon-19.png",
    "38": "icon-38.png",
    "128": "icon-128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "noaudio.html",
        "options_close.js",
        "audio.jpeg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}