Bitfinity Wallet

Bitfinity Wallet

A wallet for managing your tokens.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "short_name": "Bitfinity Wallet",
  "name": "Bitfinity Wallet",
  "description": "A wallet for managing your tokens.",
  "background": {
    "scripts": [
      "background.bundle.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "all_frames": true,
      "matches": [
        "https://*/*",
        "http://*.localhost/*",
        "http://127.0.0.1/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ]
    }
  ],
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "notifications",
    "https://*/*",
    "http://*.localhost/*",
    "http://127.0.0.1/*",
    "idle"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://www.google-analytics.com; object-src 'self'",
  "author": "Infinity Swap",
  "minimum_chrome_version": "49",
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "img/icon-16.png",
      "48": "img/icon-48.png",
      "128": "img/icon-128.png"
    },
    "default_title": "Bitfinity Wallet",
    "chrome_style": false
  },
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true,
    "chrome_style": false
  },
  "version": "2.2.3"
}