Coursera Playback Speed

Coursera Playback Speed

Allows you to set playback speed to any value (from 0.25x to 10x)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Allows you to set playback speed to any value (from 0.25x to 10x)",
  "manifest_version": 2,
  "name": "Coursera Playback Speed",
  "short_name": "Coursera Playspeed",
  "version": "1.1",
  "icons": {
    "48": "icon48.png",
    "96": "icon96.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.coursera.org/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "hook.js"
  ]
}