Examine source code of BeFi Wallet 2.0

Inspect and view changes in BeFi Wallet 2.0 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "The Global Leading WEB3.0/NFT/GameFi Gateway & Multi-chain Wallet",
  "version": "1.0.5",
  "manifest_version": 3,
  "name": "BeFi Wallet 2.0",
  "author": "https://www.befiwallet.io/",
  "options_page": "options.html",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon-34.png"
  },
  "chrome_url_overrides": {},
  "icons": {
    "16": "icon-16.png",
    "19": "icon-19.png",
    "34": "icon-34.png",
    "38": "icon-38.png",
    "48": "icon-48.png",
    "64": "icon-64.png",
    "128": "icon-128.png",
    "512": "icon-512.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ],
      "run_at": "document_start"
    }
  ],
  "devtools_page": "devtools.html",
  "permissions": [
    "tabs",
    "storage",
    "notifications"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_security_policy": {},
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "pageprovider.bundle.js",
        "icon-16.png",
        "icon-19.png",
        "icon-34.png",
        "icon-38.png",
        "icon-48.png",
        "icon-64.png",
        "icon-128.png",
        "icon-512.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}