True Sound Booster

True Sound Booster

Boost your volume up to 600% with no distortions

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_app_name__",
  "description": "__MSG_app_description__",
  "manifest_version": 3,
  "default_locale": "en",
  "version": "1.0",
  "icons": {
    "16": "assets/images/icon_16.png",
    "128": "assets/images/icon_128.png"
  },
  "action": {
    "default_popup": "html/popup.html",
    "default_title": "__MSG_app_name__",
    "default_icon": "assets/images/icon_128_to_600.png"
  },
  "background": {
    "service_worker": "scripts/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "assets/css/content.css"
      ],
      "js": [
        "scripts/content_script.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "options_page": "html/options.html",
  "permissions": [
    "tabCapture",
    "tabs",
    "storage",
    "declarativeNetRequest",
    "gcm"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "1",
        "enabled": true,
        "path": "net_rules.json"
      }
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/images/*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    },
    {
      "resources": [
        "scripts/boost_volume.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}