Examine source code of DigiWallet

Inspect and view changes in DigiWallet 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",
  "manifest_version": 3,
  "name": "DigiWallet",
  "version": "1.0.0",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "assets/index.tsx-loader-Dk2CELrE.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "16": "src/assets/icons_16x16.png",
    "32": "src/assets/icons_32x32.png",
    "48": "src/assets/icons_48x48.png",
    "128": "src/assets/icons_128x128.png"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://*.digibyte.cash/*",
    "https://*.digiwallet.im/*",
    "https://*.xdoge-dev.workers.dev/*",
    "https://digibyteblockexplorer.com/*",
    "https://testnetexplorer.digibyteservers.io/*",
    "https://testnetexplorer.digibyteservers.io/*"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "src/content/inpage.js",
        "src/assets/logo.png"
      ],
      "use_dynamic_url": false
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "assets/index.tsx-CgWXU8tF.js"
      ],
      "use_dynamic_url": true
    }
  ]
}