OKX utilities

OKX utilities

This extension helps you calculate position size based on the stop-loss price on the chart and your max risk. > Warning: The…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "OKX utilities",
  "description": "",
  "version": "1.3.1",
  "icons": {
    "512": "misc/icon_512.png"
  },
  "action": {
    "default_popup": "dist/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.okx.com/trade-swap/*"
      ],
      "js": [
        "dist/main.js"
      ]
    },
    {
      "matches": [
        "https://www.okx.com/trade-spot/*"
      ],
      "js": [
        "dist/main.js"
      ]
    },
    {
      "matches": [
        "https://www.okx.com/trade-futures/*"
      ],
      "js": [
        "dist/main.js"
      ]
    },
    {
      "matches": [
        "https://www.okx.com/trade-margin/*"
      ],
      "js": [
        "dist/main.js"
      ]
    },
    {
      "matches": [
        "https://www.okx.com/*/trade-swap/*"
      ],
      "js": [
        "dist/main.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "static/*"
      ],
      "matches": [
        "https://www.okx.com/*"
      ]
    }
  ]
}