CEX.io Orders & Positions Lists

CEX.io Orders & Positions Lists

Limit orders and margin trading positions table-lists UI improvements: full list shown no need to scroll, profit/loss total display.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "CEX.io Orders & Positions Lists",
  "short_name": "CEX Lists",
  "description": "Limit orders and margin trading positions table-lists UI improvements: full list shown no need to scroll, profit/loss total display.",
  "version": "0.1.1",
  "author": "Anton Lysenko",
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.cex.io/trade/*"
      ],
      "css": [
        "orders.css"
      ],
      "js": [
        "total.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "icon-48.png"
  },
  "icons": {
    "48": "icon-48.png",
    "128": "icon-128.png"
  }
}