Bitfi XDC chrome extension

Bitfi XDC chrome extension

Some Description

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Bitfi XDC chrome extension",
  "version": "0.2",
  "description": "Some Description",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "http://localhost"
  ],
  "externally_connectable": {
    "matches": [
      "http://*/*",
      "https://*/*"
    ]
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "icons": {
    "128": "bitfi.png"
  },
  "browser_action": {
    "default_icon": {
      "128": "bitfi.png"
    },
    "default_title": "BITFI extension",
    "default_popup": "index.html"
  }
}