YouTube Music Volume Fixer

YouTube Music Volume Fixer

Allows the user to adjust the volume scaling of the YouTube Music player.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "YouTube Music Volume Fixer",
  "version": "1.0",
  "description": "Changes the volume scaling of the YouTube Music volume slider.",
  "author": "Jose Manuel Orozco III",
  "icons": {
    "48": "icons/ytmvf-48.png",
    "96": "icons/ytmvf-96.png"
  },
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "default_icon": {
      "16": "icons/ytmvf-16.png",
      "32": "icons/ytmvf-32.png"
    },
    "default_title": "YouTube Music Volume Fixer",
    "default_popup": "popup/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://music.youtube.com/*"
      ],
      "js": [
        "globals.js",
        "yt-music-volume-fixer.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{798a57ba-c998-407b-a29d-e2f096d439da}"
    }
  }
}