csgo.expert

csgo.expert

To work on the csgo.expert website. The extension creates deals between users and auto accepts incoming trade offers from sellers!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "csgo.expert",
  "version": "1.13",
  "icons": {
    "128": "img.png"
  },
  "description": "To work on the csgo.expert website. The extension creates deals between users and auto accepts incoming trade offers from sellers!",
  "background": {
    "scripts": [
      "scripts/jquery.min.js",
      "scripts/axios.js",
      "scripts/jquery.signalr.min.js",
      "scripts/steamManager.js",
      "scripts/setHeaderChrom.js",
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/jquery.min.js",
        "main.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://csgo.expert/*",
      "*://front.csgo.expert/"
    ]
  },
  "permissions": [
    "tabs",
    "background",
    "webRequest",
    "webRequestBlocking",
    "*://*.steampowered.com/*",
    "*://steamcommunity.com/*",
    "*://csgo.expert/*",
    "*://front.csgo.expert/",
    "https://steamcommunity.com/tradeoffer/new/send",
    "https://steamcommunity.com/",
    "*://api.steampowered.com/*",
    "https://api.csgo.expert/api/*"
  ]
}