Netflix Volume Slider Fix

Netflix Volume Slider Fix

Fixes the Netflix Volume slider, making the response logarithmic rather than linear.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Netflix Volume Slider Fix",
  "version": "1.0",
  "author": "Boris Popik (github.com/enlyth)",
  "description": "Fixes the Netflix Volume slider, making the response logarithmic rather than linear.",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "*://*.netflix.com/*"
      ],
      "js": [
        "inject.js"
      ]
    }
  ],
  "permissions": [
    "activeTab"
  ],
  "web_accessible_resources": [
    "main.js"
  ]
}