FutTools 22

FutTools 22

`FutTools 22` is a simple Chrome extension that exposes keyboard shortcuts for common actions in the FUT website (Web-App).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "FutTools 22",
  "description": "`FutTools 22` is a simple Chrome extension that exposes keyboard shortcuts for common actions in the FUT website (Web-App).",
  "homepage_url": "https://chat.whatsapp.com/FAdu5nvr9TH7L3PwPR5VOG",
  "permissions": [
    "background",
    "activeTab",
    "contextMenus",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "icon-off.png",
    "48": "icon-off.png",
    "128": "icon-off.png"
  },
  "version": "3.0.0",
  "content_scripts": [
    {
      "matches": [
        "https://www.ea.com/*fifa/ultimate-team/web-app/*",
        "http://www.ea.com/*fifa/ultimate-team/web-app/*"
      ],
      "js": [
        "jquery.min.js",
        "script.js"
      ]
    }
  ],
  "options_ui": {
    "page": "/settings/index.html",
    "open_in_tab": true
  },
  "browser_action": {
    "default_icon": {
      "16": "icon-off.png",
      "24": "icon-off.png",
      "32": "icon-off.png"
    }
  }
}