TornTrader | Trading made easy

TornTrader | Trading made easy

Trading extension to go with torntrader.com TornTrader extension is a tool that helps large volume traders or new traders on Torn to make their process faster and simpler, by one click Trade summary report and pricing, it also shows the net profit.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "description": "Trading extension to go with torntrader.com",
  "name": "TornTrader | Trading made easy",
  "version": "1.1.1",
  "author": "archetype2142",
  "permissions": [
    "activeTab",
    "https://torntrader.com/"
  ],
  "background": {
    "scripts": [
      "background.bundle.js",
      "polyfills.bundle.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": {
      "16": "icon16.png",
      "32": "icon32.png"
    }
  },
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "64": "icon64.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.torn.com/trade.php*"
      ],
      "js": [
        "contentScript.bundle.js",
        "polyfills.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ],
      "run_at": "document_end"
    }
  ]
}