SteamBroker.com seller

SteamBroker.com seller

This extension is needed if you want to sell your Steam items on the SteamBroker.com website. Extension creates and send tradeOffers

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "default_locale": "en_US",
  "description": "__MSG_appDesc__",
  "version": "1.5.2",
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://*.steambroker.com/sellitems.php*"
      ],
      "js": [
        "SBSell.js"
      ]
    },
    {
      "run_at": "document_end",
      "matches": [
        "https://*.steambroker.com/mytrades.php"
      ],
      "js": [
        "lib/sha1hmac.js",
        "SBTrades.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "SBBackground.js"
    ]
  },
  "icons": {
    "16": "broker16.png",
    "48": "broker48.png",
    "128": "broker128.png"
  },
  "browser_action": {
    "default_title": "__MSG_appName__",
    "default_icon": "broker128.png",
    "default_popup": "popup.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "permissions": [
    "cookies",
    "https://steamcommunity.com/*",
    "https://*.steambroker.com/*",
    "webRequest",
    "webRequestBlocking",
    "storage"
  ]
}