Narwallets V4

Narwallets V4

NEAR protocol wallet

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Narwallets V4",
  "description": "NEAR protocol wallet",
  "version": "4.0.10",
  "action": {
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "dist/background/background.js",
    "type": "module"
  },
  "permissions": [
    "storage",
    "alarms"
  ],
  "icons": {
    "48": "icons/logo_48.png",
    "128": "icons/logo_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "dist/content-script.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "dist/content-script.js",
        "dist/injected-script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "icon-128.png",
        "icon-38.png",
        "script.bundle.js",
        "popup.html",
        "injected-script.js",
        "dist/injected-script.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ]
    }
  ]
}