Imversed

Imversed

Imversed is a browser extension wallet for the own ecosystem.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Imversed",
  "description": "Imversed is a browser extension wallet for the own ecosystem.",
  "version": "0.1.4",
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "56.0"
    }
  },
  "icons": {
    "16": "assets/icon-16.png",
    "48": "assets/icon-48.png",
    "128": "assets/icon-128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "Imversed wallet",
    "default_icon": {
      "16": "assets/icon-16.png",
      "48": "assets/icon-48.png",
      "128": "assets/icon-128.png"
    }
  },
  "background": {
    "service_worker": "background.bundle.js"
  },
  "permissions": [
    "storage",
    "notifications"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScripts.bundle.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "injectedScript.bundle.js",
        "assets/temp-icon.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}