Video Speed ⏩ HTML videos

Video Speed ⏩ HTML videos

Adjust the playback speed HTML5. Enhance videos: Video Speed Controller adjusts speed, skip with shortcuts for improved viewing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "version": "1.23",
  "description": "__MSG_descp__",
  "default_locale": "en",
  "options_ui": {
    "page": "options.html"
  },
  "manifest_version": 2,
  "background": {
    "scripts": [
      "bg.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "control.js",
        "balancetext.min.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "fontSettings",
    "storage",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "browser_action": {
    "default_icon": "128.png"
  },
  "icons": {
    "128": "128.png"
  }
}