Video Speed Up

Video Speed Up

- increase video and audio speed with single click by 0.25 ratio. - decrease video speed down to 0 (pause) - no upper speed limit so you can fast forward movies or ads.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Video Speed Up",
  "description": "Speeds up videos playback with single click. Affects html5 videos and audio.",
  "version": "1.5.7.3",
  "author": "[email protected]",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*/*"
      ],
      "js": [
        "VSUScript.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "contextMenus",
    "activeTab",
    "http://*/*",
    "https://*/*",
    "file:///*/*"
  ],
  "browser_action": {
    "default_icon": "icon19.png"
  },
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "64": "icon64.png",
    "128": "icon128.png"
  },
  "applications": {
    "gecko": {
      "id": "{1a4bd89e-02af-49a7-b6d5-aad47d4c0bcc}",
      "strict_min_version": "42.0"
    }
  }
}