Vite Passport

Vite Passport

Vite Passport is the official wallet extension from Vite Labs. With this extension you can: - Create/Import a Vite wallet -…

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Vite Passport",
  "version": "2.0.0",
  "icons": {
    "16": "src/assets/16.png",
    "32": "src/assets/32.png",
    "48": "src/assets/48.png",
    "128": "src/assets/128.png"
  },
  "action": {
    "default_icon": {
      "16": "src/assets/16.png",
      "32": "src/assets/32.png"
    },
    "default_title": "Vite Passport",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "alarms",
    "tabs"
  ],
  "background": {
    "service_worker": "src/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "src/contentScript.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "src/confirmation.html",
        "src/injectedScript.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}