MEX Assistant for BitMEX

MEX Assistant for BitMEX

Place up to 50 scaled orders into the BitMEX order book with one click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "MEX Assistant for BitMEX",
  "description": "Place up to 50 scaled orders into the BitMEX order book with one click",
  "manifest_version": 2,
  "version": "6.0.4",
  "background": {
    "scripts": [
      "build/background.js"
    ]
  },
  "icons": {
    "16": "images/logo_16.png",
    "19": "images/logo_19.png",
    "48": "images/logo_48.png",
    "128": "images/logo_128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "images/logo_19.png",
      "38": "images/logo_38.png"
    },
    "default_title": "Start MEX Assistant"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "build/contentScript.js"
      ],
      "matches": [
        "http://localhost/*",
        "https://*.bitmex.com/*",
        "https://*.mex-assistant.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "http://localhost/*",
    "https://*.bitmex.com/*",
    "https://*.mex-assistant.com/*"
  ],
  "web_accessible_resources": [
    "images/*",
    "build/inception.js"
  ]
}