TapTrust Wallet

TapTrust Wallet

Ethereum Browser Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TapTrust Wallet",
  "description": "Ethereum Browser Extension",
  "version": "0.0.2",
  "permissions": [
    "activeTab",
    "storage",
    "http://localhost/*",
    "notifications"
  ],
  "background": {
    "scripts": [
      "app/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "app/contentscript.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "browser_action": {
    "default_popup": "app/popup.html",
    "default_title": "TapTrust"
  },
  "icons": {
    "16": "assets/img/icon.png",
    "48": "assets/img/icon.png",
    "128": "assets/img/icon.png"
  },
  "externally_connectable": {
    "matches": [
      "https://taptrust.com/"
    ],
    "ids": [
      "*"
    ]
  },
  "web_accessible_resources": [
    "assets/img/icon.png",
    "app/inpage.js",
    "assets/img/AppStore.png",
    "assets/img/PlayStore.png",
    "assets/img/edit.png"
  ]
}