FUT Buyer AUTO

FUT Buyer AUTO

Sniping bot from FUT Buyer. Simply set up your filter, click start, and watch the coins roll in as the bot buys cards on your behalf

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "./background.js"
  },
  "action": {
    "default_popup": "./popup.html"
  },
  "description": "Sniping bot from FUT Buyer. Simply set up your filter, click start, and watch the coins roll in as the bot buys cards on your behalf",
  "icons": {
    "16": "assets/icons/icon_16.png",
    "32": "assets/icons/icon_32.png",
    "64": "assets/icons/icon_64.png",
    "128": "assets/icons/icon_128.png"
  },
  "manifest_version": 3,
  "name": "FUT Buyer AUTO",
  "options_page": "./options.html",
  "content_scripts": [
    {
      "matches": [
        "*://www.ea.com/*ea-sports-fc/ultimate-team/web-app/*",
        "*://ea.com/*ea-sports-fc/ultimate-team/web-app/*"
      ],
      "js": [
        "./contentScripts.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "injectScript.js",
        "*.wav"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "identity",
    "identity.email"
  ],
  "host_permissions": [
    "*://www.ea.com/*",
    "*://apisf.futalert.co.uk/*",
    "*://futbuyer.herokuapp.com/*",
    "*://utas.mob.v2.fut.ea.com/*",
    "*://www.futbin.com/*"
  ],
  "version": "1.3.0"
}