ESPN Fantasy Basketball Lineup
Fill your lineup with active players
ESPN Fantasy Basketball Lineupคืออะไร?
ESPN Fantasy Basketball Lineup เป็นส่วนขยายของ Chrome ที่พัฒนาโดย minastirithprojects และคุณลักษณะหลักของมันคือ "Fill your lineup with active players"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ESPN Fantasy Basketball Lineup
ดาวน์โหลดไฟล์ส่วนขยาย ESPN Fantasy Basketball Lineup ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This Chrome extension is used for ESPN Fantasy Basketball teams. This extension is useful for teams that follow this ordered format: PG, SG, SF, PF, C, G, F, any # of UTIL's. This extension may not work as the user desires for days that have more active players than there are lineup spots or for general days.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ESPN Fantasy Basketball Lineup |
ID | ipcaphmhnimmhdjniacnapehfdmikdpn |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/espn-fantasy-basketball-l/ipcaphmhnimmhdjniacnapehfdmikdpn |
คำอธิบาย | Fill your lineup with active players |
ขนาดไฟล์ | 30.26 KB |
จำนวนการติดตั้ง | 52 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2021-01-10 |
วันที่เผยแพร่ | 2021-01-07 |
ผู้พัฒนา | minastirithprojects |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ESPN Fantasy Basketball Lineup", "version": "1.1", "description": "Fill your lineup with active players", "permissions": [ "activeTab", "declarativeContent" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_icon": { "16": "images\/logo16.png", "32": "images\/logo32.png", "48": "images\/logo48.png", "128": "images\/logo128.png" }, "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.fantasy.espn.com\/basketball\/team*" ], "js": [ "content.js" ] } ], "icons": { "16": "images\/logo16.png", "32": "images\/logo32.png", "48": "images\/logo48.png", "128": "images\/logo128.png" }, "manifest_version": 2 } |