Examine source code of Rumble Downloader

Inspect and view changes in Rumble Downloader 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
{
  "action": {
    "default_popup": "popup/payment.html"
  },
  "content_scripts": [
    {
      "js": [
        "content/content.js"
      ],
      "matches": [
        "https://rumble.com/*"
      ]
    }
  ],
  "description": "Rumble Downloader downloads videos from Rumble",
  "host_permissions": [
    "https://rumble.com/*",
    "https://sprise-api.xyz/*"
  ],
  "icons": {
    "16": "assets/logo.png",
    "48": "assets/logo.png",
    "128": "assets/logo.png"
  },
  "background": {
    "service_worker": "service.js"
  },
  "manifest_version": 3,
  "name": "Rumble Downloader",
  "permissions": [
    "storage",
    "downloads"
  ],
  "version": "1.0",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}