Examine source code of Coursera Playback Speed

Inspect and view changes in Coursera Playback Speed source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "description": "Allows you to set playback speed to any value (removes maximum of 2x)",
  "manifest_version": 2,
  "name": "Coursera Playback Speed",
  "short_name": "Coursera Playspeed",
  "version": "1.0",
  "icons": {
    "48": "icon48.png",
    "96": "icon96.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.coursera.org/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "hook.js"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}