Playback Rate changer

Playback Rate changer

Lets you use alt and + or alt and - to change the playback rate of HTML5 video elements

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_scripts": [
    {
      "exclude_globs": [],
      "exclude_matches": [],
      "include_globs": [
        "*://*/*"
      ],
      "js": [
        "script.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "description": "Lets you use alt and + or alt and - to change the playback rate of HTML5 video elements",
  "name": "Playback Rate changer",
  "version": "1.1",
  "manifest_version": 2
}