Examine source code of VX

Inspect and view changes in VX 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": "VX",
  "version": "1.0.5",
  "description": "A Discord mod that provides Plugins and a easy way to load Themes",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png",
    "256": "icons/256.png"
  },
  "host_permissions": [
    "*://*.discord.com/*",
    "*://*.github.com/*",
    "*://objects.githubusercontent.com/*",
    "*://*.betterdiscord.app/*"
  ],
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "*://*.discord.com/*"
      ],
      "js": [
        "scripts/content.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "build.js"
      ],
      "matches": [
        "*://*.discord.com/*"
      ]
    }
  ],
  "permissions": [
    "declarativeNetRequest",
    "scripting",
    "storage",
    "tabs"
  ],
  "background": {
    "service_worker": "scripts/service-worker.js"
  },
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "VX-modifyResponseHeaders",
        "enabled": true,
        "path": "modifyResponseHeaders.json"
      }
    ]
  },
  "version_name": "1.0.5 (9/8/2024)",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}