ESPN NBA Fantasy Team Auto Setup
Automatically add active players to the current roster in an ESPN NBA fantasy league.
ESPN NBA Fantasy Team Auto Setup là gì?
ESPN NBA Fantasy Team Auto Setup là một tiện ích mở rộng Chrome được phát triển bởi espn.fantasy.autopick, và tính năng chính của nó là "Automatically add active players to the current roster in an ESPN NBA fantasy league.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng ESPN NBA Fantasy Team Auto Setup
Tải xuống các tệp mở rộng ESPN NBA Fantasy Team Auto Setup dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
This extension adds buttons for automatic team setup to the ESPN NBA Fantasy clubhouse page. The "Auto (day)" button will automatically put all players that are active on that day in the starting lineup. If there aren't enough available slots for all the active players, the uninjured players are preferred. The "Auto (week)" button will automatically set up players for the rest of the current game week, which is always Monday->Sunday on ESPN. Automatic multi-day setup may fail in some cases. To increase the chance of success, don't touch anything else while the automatic setup is in progress. The extension needs to click its way through each day of the week, one by one. By default the shortcut Shift+Ctrl+A (Shift+Command+A on Mac) can be used to perform the automatic setup for a single day. This shortcut can be changed on the Keyboard shortcuts page on the Chrome extensions page. Shift+Ctrl+W (Shift+Command+W on Mac) can be used for automatic setup of the current week. If you encounter an error message when using the extension, reload the page and try again. If it fails consistently you can try to increase the delay between moves, which by default is one second. If nothing happens when you click the button, look for errors or warnings in the developer console (F12), and report the issue on the extension's GitHub page. If you're trying to do automatic setup in an NHL league you'll need to install the NHL version of the extension, which is called ESPN NHL Fantasy Team Auto Setup.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | ESPN NBA Fantasy Team Auto Setup |
ID | nmehekgchlioodlggejkfhiglajaonie |
URL Chính Thức | https://chromewebstore.google.com/detail/espn-nba-fantasy-team-aut/nmehekgchlioodlggejkfhiglajaonie |
Mô tả | Automatically add active players to the current roster in an ESPN NBA fantasy league. |
Kích Thước Tệp | 90.8 KB |
Số Lần Cài Đặt | 2,783 |
Phiên Bản Hiện Tại | 4.0.0 |
Cập Nhật Lần Cuối | 2023-11-05 |
Ngày Phát Hành | 2019-10-24 |
Đánh Giá | 4.93/5 Tổng số 29 Đánh Giá |
Nhà Phát Triển | espn.fantasy.autopick |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/magnusbakken/espn-fantasy-autopick |
URL Trang Trợ Giúp | https://github.com/magnusbakken/espn-fantasy-autopick/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ESPN NBA Fantasy Team Auto Setup", "description": "Automatically add active players to the current roster in an ESPN NBA fantasy league.", "version": "4.0.0", "manifest_version": 3, "permissions": [ "storage", "tabs" ], "host_permissions": [ "*:\/\/fantasy.espn.com\/basketball\/team*" ], "icons": { "32": "assets\/icon-32.png", "64": "assets\/icon-64.png", "128": "assets\/icon-128.png" }, "action": { "default_title": "ESPN NBA Fantasy Team Auto Setup", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.fantasy.espn.com\/basketball\/team*" ], "js": [ "data-nba.js", "data.js", "autosetup.js" ], "run_at": "document_end" } ], "options_ui": { "page": "settings.html" } } |