Examine source code of GrabIt: Sora video downloader

Inspect and view changes in GrabIt: Sora video 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
{
  "manifest_version": 3,
  "name": "GrabIt: Sora video downloader",
  "version": "1.1",
  "description": "Download videos from Sora effortlessly with GrabIt, your reliable and fast video downloader.",
  "permissions": [],
  "host_permissions": [],
  "icons": {
    "32": "icons/32.png",
    "128": "icons/logo.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://sora.com/*",
        "https://sora.com/library/saved",
        "https://sora.com/explore/featured",
        "https://sora.com/explore/recent",
        "https://sora.com/g/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_icon": {
      "128": "icons/logo.png"
    },
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "popup.html",
        "icons/*",
        "js/inject.js",
        "popup.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}