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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
# FutTools 22 --- Please! Useto 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 |
공식 URL | 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" } } } |