Video Speed Up

Video Speed Up

Accelerates video playback with a single click on the extension button. Works with HTML5 videos and audio elements.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Video Speed Up",
  "description": "Accelerates video playback with a single click on the extension button. Works with HTML5 videos and audio elements.",
  "version": "1.5.7.5",
  "author": "[email protected]",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*/*"
      ],
      "js": [
        "VSUScript.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "activeTab",
    "contextMenus"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/",
    "file:///*/"
  ],
  "action": {
    "default_icon": "icon19.png"
  },
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "64": "icon64.png",
    "128": "icon128.png"
  }
}