Examine source code of Redgifs Downloader for ff

Inspect and view changes in Redgifs Downloader for ff 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,
  "name": "Redgifs Downloader",
  "version": "1.2.1",
  "description": "Firefox extension to download videos from Redgifs",
  "permissions": [
    "storage",
    "scripting",
    "webRequest",
    "downloads",
    "*://*.redgifs.com/*",
    "https://redgifsdlr123.onrender.com/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.redgifs.com/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "css/styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "css/styles.css",
    "modules/cssLoader.js",
    "modules/downloadButton.js",
    "modules/downloadTracker.js",
    "modules/mutationObserver.js",
    "modules/storageManager.js",
    "modules/token.js",
    "modules/copyLinkButton.js"
  ],
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/icon16.png",
      "32": "icons/icon32.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{9b753495-b9b5-4d5c-98f1-90e43edfd7d0}"
    }
  }
}