Web3Password-A Decentralized Password Manager

Web3Password-A Decentralized Password Manager

A secure password manager for all of your devices.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "short_name": "__MSG_appName__",
  "author": "Web3Password",
  "description": "__MSG_extDesc__",
  "default_locale": "en",
  "homepage_url": "https://www.web3password.com/",
  "version": "1.1.3",
  "icons": {
    "16": "logo128.png",
    "32": "logo128.png",
    "48": "logo128.png",
    "64": "logo128.png",
    "128": "logo128.png"
  },
  "action": {
    "default_icon": {
      "16": "logo128.png",
      "32": "logo128.png",
      "48": "logo128.png",
      "64": "logo128.png",
      "128": "logo128.png"
    },
    "default_popup": "popup/index.html"
  },
  "permissions": [
    "activeTab",
    "alarms",
    "clipboardRead",
    "clipboardWrite",
    "contextMenus",
    "privacy",
    "storage",
    "tabs",
    "unlimitedStorage",
    "webNavigation"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval' http://localhost; object-src 'self';"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content/autofill/autofill.js"
      ],
      "css": [
        "content/autofill/autofill.css"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "match_about_blank": true,
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "background/service_worker.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "content/assets/*",
        "popup/assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}