TezBox - Tezos Wallet

TezBox - Tezos Wallet

Secure Tezos Wallet from your browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TezBox - Tezos Wallet",
  "short_name": "TezBox",
  "version": "20.0.1",
  "manifest_version": 2,
  "author": "https://tezbox.com",
  "description": "Secure Tezos Wallet from your browser",
  "icons": {
    "16": "skin/images/icon-16.png",
    "128": "skin/images/icon-128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "skin/js/protobuf.min.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "skin/images/icon-19.png",
      "38": "skin/images/icon-38.png"
    }
  },
  "permissions": [
    "http://*/*",
    "https://*/*",
    "storage",
    "unlimitedStorage",
    "clipboardWrite",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "skin/images/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [],
      "css": [],
      "js": [
        "contentscript.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "content_security_policy": "img-src 'self' 'unsafe-eval'; script-src 'self' 'unsafe-eval' https://www.google-analytics.com; object-src 'self'"
}