Superorder – Automated Trading

Superorder – Automated Trading

Superorder Extension allows traders to execute orders on their exchanges right from TradingView sidebar by utilizing API connection

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Superorder – Automated Trading",
  "version": "0.1.8",
  "description": "Superorder Extension allows traders to execute orders on their exchanges right from TradingView sidebar by utilizing API connection",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "index.html",
    "default_title": "Superorder Trading"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "css": [],
      "js": [
        "inject.js"
      ],
      "matches": [
        "https://www.tradingview.com/chart/*"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "content.js"
  ],
  "permissions": [
    "storage"
  ]
}