Uniswap Extension

Uniswap Extension

A crypto wallet for swapping on 8+ networks

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Uniswap Extension",
  "description": "A crypto wallet for swapping on 8+ networks",
  "version": "0.11.10.1",
  "minimum_chrome_version": "116",
  "icons": {
    "16": "assets/icon16.png",
    "32": "assets/icon32.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  },
  "action": {
    "default_icon": {
      "16": "assets/icon16.png",
      "32": "assets/icon32.png",
      "48": "assets/icon48.png",
      "128": "assets/icon128.png"
    }
  },
  "side_panel": {
    "default_path": "sidebar.html"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "permissions": [
    "alarms",
    "notifications",
    "sidePanel",
    "storage",
    "tabs"
  ],
  "content_scripts": [
    {
      "id": "injected",
      "run_at": "document_start",
      "matches": [
        "http://127.0.0.1/*",
        "http://localhost/*",
        "https://*/*"
      ],
      "js": [
        "injected.js"
      ]
    },
    {
      "id": "ethereum",
      "run_at": "document_start",
      "matches": [
        "http://127.0.0.1/*",
        "http://localhost/*",
        "https://*/*"
      ],
      "js": [
        "ethereum.js"
      ],
      "world": "MAIN"
    }
  ],
  "externally_connectable": {
    "ids": [],
    "matches": []
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+U",
        "mac": "Command+U"
      },
      "description": "Toggles the sidebar"
    }
  }
}