Video Speed And Volume With Mouse Wheel

Video Speed And Volume With Mouse Wheel

Control video and audio playback speed and volume with the mouse wheel

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extension_name__",
  "description": "__MSG_extension_description__",
  "version": "1.2024.122.0",
  "author": "dlw@mcprv",
  "default_locale": "en",
  "browser_specific_settings": {
    "gecko": {
      "id": "{9d4b6e68-1bf6-4504-b878-63b0b1e57d60}"
    }
  },
  "permissions": [
    "<all_urls>",
    "webNavigation",
    "storage",
    "menus",
    "notifications",
    "management"
  ],
  "icons": {
    "64": "lib/mouse_scroll_wheel_icon.svg"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "browser_style": true,
    "default_title": "__MSG_extension_name__",
    "default_icon": {
      "96": "lib/mouse_scroll_wheel_icon.svg"
    }
  },
  "options_ui": {
    "open_in_tab": false,
    "page": "options.html",
    "browser_style": true
  }
}