EasySBC Player Import
Extension to import players from your club and solve Ultimate Team Squad Building Challenges or build meta squads using EasySBC
EasySBC Player Importคืออะไร?
EasySBC Player Import เป็นส่วนขยายของ Chrome ที่พัฒนาโดย EasySBC และคุณลักษณะหลักของมันคือ "Extension to import players from your club and solve Ultimate Team Squad Building Challenges or build meta squads using EasySBC"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย EasySBC Player Import
ดาวน์โหลดไฟล์ส่วนขยาย EasySBC Player Import ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
EasySBC Player Import The EasySBC import extension is a tool for importing your FC24 players into the EasySBC web app. This chrome extension is used to read your FC24 players through the Ultimate Team Web App. You do this by activating this chrome extension and then browse through your club’s player page. When imported, these players are used in the web app to give you personalised solutions for squad building challenges (SBCs) in FC24. Here, our AI will search for the cheapest combination of players in your club to solve the SBC!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | EasySBC Player Import |
ID | mchecdiinfipdfihkoebfbpfnllbllhc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/easysbc-player-import/mchecdiinfipdfihkoebfbpfnllbllhc |
คำอธิบาย | Extension to import players from your club and solve Ultimate Team Squad Building Challenges or build meta squads using EasySBC |
ขนาดไฟล์ | 17.96 KB |
จำนวนการติดตั้ง | 10,000 |
เวอร์ชันปัจจุบัน | 1.48 |
อัปเดตครั้งล่าสุด | 2023-11-16 |
วันที่เผยแพร่ | 2021-11-02 |
คะแนน | 4.75/5 รวมทั้งหมด 8 คะแนน |
ผู้พัฒนา | EasySBC |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://easysbc.io |
URL หน้าช่วยเหลือ | https://easysbc.io/contact |
URL หน้านโยบายความเป็นส่วนตัว | https://easysbc.io/privacy |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "EasySBC Player Import", "background": { "service_worker": "background.js" }, "description": "Extension to import players from your club and solve Ultimate Team Squad Building Challenges or build meta squads using EasySBC", "version": "1.48", "manifest_version": 3, "icons": { "16": "logo_16.png", "48": "logo_48.png", "128": "logo_128.png" }, "permissions": [ "storage" ], "content_scripts": [ { "js": [ "proxy.js", "loadContent.js" ], "matches": [ "https:\/\/www.ea.com\/ea-sports-fc\/ultimate-team\/web-app\/" ], "run_at": "document_start" } ], "externally_connectable": { "matches": [ "*:\/\/easy-sbc.com\/*", "*:\/\/easysbc.io\/*", "*:\/\/www.easysbc.io\/*", "*:\/\/staging.easysbc.io\/*", "*:\/\/beta.easysbc.io\/*", "*:\/\/localhost\/*" ] }, "web_accessible_resources": [ { "resources": [ "content.js" ], "matches": [ "*:\/\/www.ea.com\/*" ] } ] } |