Examine source code of BSC DeFi Wallet

Inspect and view changes in BSC DeFi Wallet 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_title": "BSC DeFi Wallet",
    "default_popup": "index.html",
    "default_icon": "images/128.png"
  },
  "author": "https:",
  "background": {
    "service_worker": "V3.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "webextension-polyfill.js",
        "content-script.js"
      ],
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "default_locale": "en",
  "description": "__MSG_appDescription__",
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "16": "images/16.png",
    "32": "images/32.png",
    "50": "images/50.png",
    "64": "images/64.png",
    "128": "images/128.png",
    "512": "images/512.png"
  },
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "permissions": [
    "storage",
    "unlimitedStorage",
    "notifications",
    "tabs",
    "cookies"
  ],
  "short_name": "BSC DeFi",
  "version": "3.0.19",
  "web_accessible_resources": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "resources": [
        "inpage.js",
        "user-media-permission.html",
        "popup.html"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}