FUT Helper
This extension helps to buy and sell FUT cards in the FUT web application much easier using the keyboard First set appropriate…
FUT Helperとは何ですか?
FUT Helperはp.mykhailovによって開発されたChromeの拡張機能で、その主な機能は「This extension helps to buy and sell FUT cards in the FUT web application much easier using the keyboard First set appropriate…」です。
拡張機能のスクリーンショット
FUT Helper拡張機能のCRXファイルをダウンロード
FUT Helper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension helps to buy and sell FUT cards in the FUT web application much easier using the keyboard First set appropriate convinient keys and then use keyboard instead of mouse
拡張機能の基本情報
名前 | |
ID | icdicpefgeajbmigaodojedcdljlnkln |
公式URL | https://chrome.google.com/webstore/detail/fut-helper/icdicpefgeajbmigaodojedcdljlnkln |
説明 | This extension helps to buy and sell FUT cards in the FUT web application much easier using the keyboard First set appropriate… |
ファイルサイズ | 7.68 KB |
インストール数 | 67 |
現在のバージョン | 1.1.4 |
最終更新日 | 2022-02-01 |
公開日 | 2019-11-12 |
評価 | 3.00/5 合計 2 レビュー |
開発者 | p.mykhailov |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "FUT Helper", "short_name": "FH", "version": "1.1.4", "content_scripts": [ { "matches": [ "*:\/\/www.easports.com\/fifa\/ultimate-team\/web-app\/*", "*:\/\/www.ea.com\/fifa\/ultimate-team\/web-app\/*" ], "js": [ "content.js" ], "css": [] } ], "background": { "scripts": [ "background.js" ], "persistent": true }, "permissions": [ "tabs", "storage" ], "icons": { "16": "icon.png", "48": "icon.png" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "web_accessible_resources": [], "browser_action": { "default_title": "FUT Helper", "default_popup": "popup.html" } } |