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 هو إضافة Chrome تم تطويرها بواسطة p.mykhailov، والميزة الرئيسية لها هي "This extension helps to buy and sell FUT cards in the FUT web application much easier using the keyboard First set appropriate…".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة FUT Helper
قم بتنزيل ملفات الامتداد FUT Helper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
البريد الإلكتروني | [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" } } |