Temple - Tezos Wallet

Temple - Tezos Wallet

🔐💰Cryptocurrency wallet for Tezos blockchain as Web Extension for your Browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.21.1",
  "name": "Temple - Tezos Wallet",
  "short_name": "Temple - Tezos Wallet",
  "icons": {
    "16": "misc/icon-16.png",
    "19": "misc/icon-19.png",
    "38": "misc/icon-38.png",
    "128": "misc/icon-128.png"
  },
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "homepage_url": "https://github.com/madfish-solutions/templewallet-extension",
  "author": "https://madfish.solutions",
  "minimum_chrome_version": "103",
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "http://localhost/*",
        "http://127.0.0.1/*",
        "https://*/*"
      ],
      "js": [
        "scripts/contentScript.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "scripts/replaceAds.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/keepBackgroundWorkerAlive.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "match_about_blank": true,
      "match_origin_as_fallback": true
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://*/*"
      ],
      "resources": [
        "scripts/*.chunk.js",
        "scripts/*.embed.js",
        "fullpage.html",
        "misc/ad-banners/*",
        "iframes/ads-stack.html",
        "iframes/persona-ad.html"
      ]
    }
  ],
  "permissions": [
    "storage",
    "unlimitedStorage",
    "clipboardWrite",
    "activeTab"
  ],
  "host_permissions": [
    "http://localhost:8732/"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
  },
  "action": {
    "default_title": "Temple - Tezos Wallet",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "misc/icon-16.png",
      "19": "misc/icon-19.png",
      "38": "misc/icon-38.png",
      "128": "misc/icon-128.png"
    },
    "chrome_style": false
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "background": {
    "service_worker": "background/index.js"
  }
}