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은(는) EasySBC에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extension to import players from your club and solve Ultimate Team Squad Building Challenges or build meta squads using EasySBC"입니다.
확장 프로그램 스크린샷
EasySBC Player Import 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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\/*" ] } ] } |