Examine source code of Download Twitter Videos - Twitter Downloader

Inspect and view changes in Download Twitter Videos - Twitter 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": 2,
  "version": "0.0.1",
  "name": "Download Twitter Videos - Twitter Downloader",
  "description": "Our Twitter Video Downloader makes it easy to download Twitter videos directly to your device, whether you're using a mobile or PC.",
  "content_scripts": [
    {
      "matches": [
        "*://twitter.com/*",
        "*://mobile.twitter.com/*",
        "*://tweetdeck.twitter.com/*",
        "*://x.com/*",
        "*://mobile.x.com/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "icons": {
    "16": "assets/icon-16.png",
    "32": "assets/icon-32.png",
    "48": "assets/icon-48.png",
    "128": "assets/icon-128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "contact@twittersave.com",
      "strict_min_version": "109.0"
    }
  }
}