FutTools 22
`FutTools 22` is a simple Chrome extension that exposes keyboard shortcuts for common actions in the FUT website (Web-App).
什麼是FutTools 22?
FutTools 22是由Subsoft, inc開發的Chrome擴展程式,該擴展的主要功能是“`FutTools 22` is a simple Chrome extension that exposes keyboard shortcuts for common actions in the FUT website (Web-App).”。
擴展截圖
下載FutTools 22擴展crx文件
下載FutTools 22擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
# FutTools 22
---
Please! Use to Enable/Disable the Extension
---
## Currently supported shortcuts
* **TAB** - Enable/Disable Extension. (***VERY IMPORTANT***)
* **S** - Stores the current item into your club.
* **Q** - Quick sells the current item.
* **B** - Buy Now quickly.
* **I** - Quickly list selected item for original price.
* **-** - Back to screen and create a new search with a lower Max Bid Price.
* **=** - Back to screen and create a new search with a higher Max Bid Price.
* **E** - Turn ON/OFF a Loop (A new search with a different Min Bid Price) *.*
* **V** - Get a Futbin Price for the Current Item (Player). *.*
* **Backspace** - Goes back. ;)
* **SPACE** - Goes back and create a new search. *.*
* Use the Options Menu to customize your FutTools 22!
---
WhatsApp Group: https://chat.whatsapp.com/FAdu5nvr9TH7L3PwPR5VOG
--- 擴展基本資訊
| 名稱 | |
| ID | bfdcfhbemickihboggbackhlpojmoelm |
| 官方網址 | https://chrome.google.com/webstore/detail/futtools-22/bfdcfhbemickihboggbackhlpojmoelm |
| 簡介 | `FutTools 22` is a simple Chrome extension that exposes keyboard shortcuts for common actions in the FUT website (Web-App). |
| 檔案大小 | 2.29 MB |
| 安裝次數 | 461 |
| 目前版本 | 3.0.0 |
| 更新時間 | 2021-09-23 |
| 上架時間 | 2019-12-11 |
| 評分 | 4.50/5 共 14 次評分 |
| 開發者 | Subsoft, inc |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en-US |
| 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"
}
}
} | |