Examine source code of SpeedUp

Inspect and view changes in SpeedUp 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
{
  "manifest_version": 3,
  "name": "SpeedUp",
  "version": "1.0",
  "browser_specific_settings": {
    "gecko": {
      "id": "cce9878742cdd8dc6e563ac0e521e97ef8305927@speed-up"
    }
  },
  "description": "Allows faster video playback on YouTube.",
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "host_permissions": [
    "https://www.youtube.com/*"
  ],
  "icons": {
    "48": "speedUpIcon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/watch*"
      ],
      "js": [
        "speedup.js"
      ]
    }
  ]
}