LeetSports Fantasy Hockey Tools

Fantasy hockey tools

LeetSports Fantasy Hockey Tools là gì?

LeetSports Fantasy Hockey Tools là một tiện ích mở rộng Chrome được phát triển bởi LeetSports, và tính năng chính của nó là "Fantasy hockey tools".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng LeetSports Fantasy Hockey Tools 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

                        LeetSports is a collection of fantasy hockey tools to help you win your ESPN, Yahoo, and Fantrax fantasy hockey pools in 2021.

This fantasy hockey extension displays the lineup position of any ESPN, Yahoo, and Fantrax fantasy hockey players, including lines, power play, and penalty kill deployment directly on the website.

Now you are also able to view remaining games and off night games (< half of teams are playing) for each player. You can see games for the remainder of the week or set a custom date range.

Look out for more functionality coming soon! This will include a variety of tools to help you win your fantasy hockey pool this year!

Note: You may need to force refresh your fantasy hockey website to get it work the first time after installing. To do this try Shift-Cmd-R on Mac or Ctrl-F5 for Windows. If this doesn't work, you can always try restarting chrome as well or toggling the extension on/off in chrome://extensions/                    

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

Tên LeetSports Fantasy Hockey Tools LeetSports Fantasy Hockey Tools
ID immpookfmnhkhekgapcepemkdehdlgbb
URL Chính Thức https://chromewebstore.google.com/detail/leetsports-fantasy-hockey/immpookfmnhkhekgapcepemkdehdlgbb
Mô tả Fantasy hockey tools
Kích Thước Tệp 24.69 KB
Số Lần Cài Đặt 1,017
Phiên Bản Hiện Tại 1.0.4
Cập Nhật Lần Cuối 2022-02-06
Ngày Phát Hành 2021-10-14
Đánh Giá 4.43/5 Tổng số 14 Đánh Giá
Nhà Phát Triển LeetSports
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "LeetSports Fantasy Hockey Tools",
    "description": "Fantasy hockey tools",
    "version": "1.0.4",
    "icons": {
        "128": "res\/icon.png"
    },
    "browser_action": {
        "default_icon": "res\/icon.png",
        "default_popup": "popup.html",
        "default_title": "LeetSports"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/fantasy.espn.com\/hockey\/*"
            ],
            "js": [
                "espn_content.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/hockey.fantasysports.yahoo.com\/hockey\/*"
            ],
            "js": [
                "yahoo_content.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/www.fantrax.com\/fantasy\/league\/*"
            ],
            "js": [
                "fantrax_content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/leetsports-env.eba-fr7wdxc8.us-west-2.elasticbeanstalk.com\/*"
    ]
}