Examine source code of Panopto Custom Speed

Inspect and view changes in Panopto Custom 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
{
  "manifest_version": 3,
  "name": "Panopto Custom Speed",
  "version": "2.2",
  "description": "Allows you to set custom speeds on Panopto. Useful for University Students.",
  "icons": {
    "512": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.cloud.panopto.eu/*",
        "https://*.hosted.panopto.eu/*",
        "https://*.cloud.panopto.com/*",
        "https://*.hosted.panopto.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}