Near Protocol Wallet

Near Protocol Wallet

Near chain wallet provides users with a lighter experience

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Near Protocol Wallet",
  "homepage_url": "https://wallet.near.org/",
  "description": "Near chain wallet provides users with a lighter experience",
  "default_locale": "en",
  "permissions": [
    "storage",
    "alarms"
  ],
  "icons": {
    "16": "./icons/16.png",
    "24": "./icons/24.png",
    "32": "./icons/32.png",
    "48": "./icons/48.png",
    "64": "./icons/64.png",
    "96": "./icons/96.png",
    "128": "./icons/128.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/content-script.js",
        "js/inpage-script.js"
      ],
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "Near Protocol Wallet",
    "default_icon": {
      "16": "./icons/16.png",
      "24": "./icons/24.png",
      "32": "./icons/32.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "js/inpage-script.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "version": "1.2.4",
  "content_security_policy": {
    "extension_pages": "script-src 'self' ; object-src 'self'"
  }
}