SkinThunder Helper CSGO

SkinThunder Helper CSGO

Auto-populate and verify CSGO skin trades on SkinThunder.com trading platform.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SkinThunder Helper CSGO",
  "description": "Auto-populate and verify CSGO skin trades on SkinThunder.com trading platform.",
  "version": "1.4.3",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.steamcommunity.com/id/*/tradehistory*",
        "*://*.steamcommunity.com/profiles/*/tradehistory*"
      ],
      "js": [
        "lib/utils.js",
        "lib/trading/verification_generate.js"
      ],
      "css": [
        "main.css"
      ]
    },
    {
      "matches": [
        "*://*.steamcommunity.com/tradeoffer/*"
      ],
      "js": [
        "lib/utils.js",
        "lib/trading/trading_helper.js",
        "startup.js"
      ],
      "css": [
        "main.css"
      ]
    }
  ],
  "permissions": [
    "*://*.steamcommunity.com/tradeoffer/*",
    "*://*.steamcommunity.com/id/*/tradehistory*",
    "*://*.steamcommunity.com/profiles/*/tradehistory*",
    "*://*.skinthunder.com/api/p2p/listSells",
    "*://*.skinthunder.com/api/exchange/list"
  ],
  "icons": {
    "16": "/images/logo_16.png",
    "32": "/images/logo_32.png",
    "48": "/images/logo_48.png",
    "128": "/images/logo_128.png"
  }
}