Bitwise Account Manager

Bitwise Account Manager

Manage BitMEX API credentials for secure crypto-trading without exposing API secrets to third parties.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Bitwise Account Manager",
  "short_name": "BAM",
  "version": "2.0.1",
  "description": "Manage BitMEX API credentials for secure crypto-trading without exposing API secrets to third parties.",
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "background": {
    "scripts": [
      "asserts.js",
      "crypto.js",
      "accounts.js",
      "config.js",
      "ports.js",
      "mux.js",
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "declarativeContent",
    "storage",
    "*://*.bitwise.cc/",
    "*://www.bitmex.com/",
    "*://testnet.bitmex.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.bitwise.cc/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.bitwise.cc/*"
    ]
  },
  "manifest_version": 2
}