SoundFixer

SoundFixer

Helps you fix annoying sound problems on sites like YouTube: audio in one channel only, too quiet or too loud. (Unfortunately, this extension does not work on all websites because of cross-domain issues — but it does work on YouTube!)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "SoundFixer",
  "author": "Val Packett",
  "version": "1.4.1",
  "description": "Lets you fix annoying sound problems in YouTube videos and such. Like audio in one channel only, too quiet or too loud",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "icons": {
    "48": "icon.svg",
    "96": "icon.svg"
  },
  "permissions": [
    "activeTab",
    "webNavigation"
  ],
  "browser_action": {
    "default_icon": "icon.svg",
    "default_title": "SoundFixer",
    "default_popup": "popup.html",
    "theme_icons": [
      {
        "dark": "icon.svg",
        "light": "icon-inv.svg",
        "size": 64
      },
      {
        "dark": "icon.svg",
        "light": "icon-inv.svg",
        "size": 48
      },
      {
        "dark": "icon.svg",
        "light": "icon-inv.svg",
        "size": 32
      },
      {
        "dark": "icon.svg",
        "light": "icon-inv.svg",
        "size": 16
      }
    ],
    "browser_style": true
  }
}