Coinbase Wallet extension

Coinbase Wallet extension is the safest and easiest way to use crypto apps in your browser.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "Coinbase Wallet extension",
  "description": "Coinbase Wallet extension is the safest and easiest way to use crypto apps in your browser.",
  "manifest_version": 3,
  "version": "3.2.0",
  "minimum_chrome_version": "102",
  "permissions": [
    "activeTab",
    "alarms",
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "https://*/*",
    "http://localhost/*",
    "http://127.0.0.1/*",
    "http://0.0.0.0/*"
  ],
  "icons": {
    "16": "favicon.ico",
    "48": "logo192.png",
    "128": "logo512.png"
  },
  "action": {
    "default_icon": {
      "16": "favicon.ico",
      "48": "logo192.png",
      "128": "logo512.png"
    },
    "default_popup": "index.html?inPageRequest=false"
  },
  "background": {
    "service_worker": "service.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "requestProvider.js",
        "requestSolanaProvider.js",
        "requestRelay.js",
        "ga.js",
        "siteWarning.html",
        "forceUpdate.html",
        "forceUpdate.js",
        "js/web-controller-sdk.js",
        "js/web-view-sdk.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}