Fantasy Baseball Tool

Tool for ESPN fantasy baseball leagues to automatically set lineups.

Fantasy Baseball Tool là gì?

Fantasy Baseball Tool là một tiện ích mở rộng Chrome được phát triển bởi ceglierob, và tính năng chính của nó là "Tool for ESPN fantasy baseball leagues to automatically set lineups.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Fantasy Baseball Tool

Tải xuống các tệp mở rộng Fantasy Baseball Tool 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 is a tool which automatically sets the lineup for an ESPN fantasy baseball league. It will prioritize players who's team is playing that day, and attempt to put as many of those players in the lineup as possible.

How to use:
1. Install the extension.
2. Navigate to the "My Team" tab of your ESPN fantasy baseball league.
3. Once the page loads, there should be a new button next to "Drop Players" labeled "Run". Click this to start the program. It will take a few seconds to run.
4. When it has stopped running, the lineup has been successfully set!

As this is a beta version, there are many restrictions, but also many features I intend to implement.

Restrictions:
- MOST IMPORTANT: This tool only reliably works in standard ESPN leagues. That is, the league must have the following slots for batters:
1 of: C, 1B, 2B, SS, 3B, 2B/SS, 1B/3B, UTIL
5 of: OF
This is the default for ESPN leagues, but be sure that it holds true for your specific league before using the tool.
- You must be on the "My Team" page of the ESPN league
- It only works with ESPN leagues
- It only optimizes the batters, not pitchers
- There is no prioritization among players who are playing: aka, it does not know if one player is better than another
- It does not know if a player is actually playing or if they are not playing due to injury status, it merely knows that the player's team is playing
- It only works for one day at a time. However, you can manually skip ahead to the next day and run the program again on that day
- You should not navigate to other tabs or attempt to click anything while the program is running. I haven't extensively tested how it would respond to this interference, but I would play it safe for now

Features currently being developed:
- Optimize pitchers as well as hitters
- Integrate the "Out" injury status in decision making
- Add an option to set the lineup for the entire week with one click

Possible planned features for the future:
- Determine if one player is better than another, and factor that into setting the lineup
- Expand usage to leagues other than ESPN's standard format.

If you encounter any bugs, have questions or suggestions, or want to support the project, please join the Discord with the following link: https://discord.gg/ajBGsBpqrV                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Fantasy Baseball Tool Fantasy Baseball Tool
ID nepldnfjnhahgnepdmgofdpmnkomhnlk
URL Chính Thức https://chromewebstore.google.com/detail/fantasy-baseball-tool/nepldnfjnhahgnepdmgofdpmnkomhnlk
Mô tả Tool for ESPN fantasy baseball leagues to automatically set lineups.
Kích Thước Tệp 329 KB
Số Lần Cài Đặt 41
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2022-04-01
Ngày Phát Hành 2022-03-31
Nhà Phát Triển ceglierob
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://discord.gg/ajBGsBpqrV
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Fantasy Baseball Tool",
    "version": "1.0",
    "description": "Tool for ESPN fantasy baseball leagues to automatically set lineups.",
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/fantasy.espn.com\/baseball\/*"
            ],
            "js": [
                "algorithm.js",
                "content.js",
                "Player.js"
            ]
        }
    ],
    "icons": {
        "16": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    }
}