Futbin Charts
Display price charts directly in Futbin players list view
Futbin Chartsคืออะไร?
Futbin Charts เป็นส่วนขยายของ Chrome ที่พัฒนาโดย krabboss117 และคุณลักษณะหลักของมันคือ "Display price charts directly in Futbin players list view"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Futbin Charts
ดาวน์โหลดไฟล์ส่วนขยาย Futbin Charts ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Futbin Charts adds a button to each player in the list view, to access directly to the prices charts for this player. This is a great improvement for your Futbin workflow, especially during trading sessions, because you do not need to open each player page anymore. A lot of time saved, a lot of coins earned ! This is an unofficial Futbin Chrome Extension using Futbin.com data. All credits for data used by the extension go to Fubin.com. Release 0.6.0 (latest): - Add FIFA 23 support Release 0.5.0: - Add FIFA 22 support Release 0.4.0: - Add sales history chart - Add filters to daily chart - Rework hourly chart filters design Release 0.3.0: - Add chart button to PGP view Release 0.2.0: - Add 18n (French / English) - Add FIFA 21 support
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Futbin Charts |
ID | kcldcojnapnigmihaddgkcabdklfiobi |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/futbin-charts/kcldcojnapnigmihaddgkcabdklfiobi |
คำอธิบาย | Display price charts directly in Futbin players list view |
ขนาดไฟล์ | 408 KB |
จำนวนการติดตั้ง | 466 |
เวอร์ชันปัจจุบัน | 0.6.1 |
อัปเดตครั้งล่าสุด | 2022-10-13 |
วันที่เผยแพร่ | 2020-07-31 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | krabboss117 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://www.buymeacoffee.com/k117 |
ภาษาที่รองรับ | fr |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Futbin Charts", "description": "Display price charts directly in Futbin players list view", "version": "0.6.1", "manifest_version": 2, "icons": { "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "https:\/\/www.futbin.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.futbin.com\/players*", "https:\/\/www.futbin.com\/*\/players*" ], "js": [ "content\/players.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/www.futbin.com\/*\/pgp*" ], "js": [ "content\/pgp.js" ], "run_at": "document_end" } ] } |