Fantasy Hockey Scheduler

See a player's remaining games and off-nights in the week

Fantasy Hockey Schedulerคืออะไร?

Fantasy Hockey Scheduler เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://goal-line-fantasy.herokuapp.com และคุณลักษณะหลักของมันคือ "See a player's remaining games and off-nights in the week"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fantasy Hockey Scheduler

ดาวน์โหลดไฟล์ส่วนขยาย Fantasy Hockey Scheduler ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Get a player's remaining games and off-nights embedded right within your Yahoo! or ESPN Fantasy Hockey League!

Using data retrieved from the NHL API, you can see how many games and off-nights a player has remaining in the current week.  By clicking on the extension icon, you can also input a custom range of dates to give you the data you are looking for.

Why is this useful?
When you are looking to make pickups, drops, or just want to compare your team with your opponent, knowing the amount of games left for each player is crucial.

What are "off-nights"?
Off-Nights are games that occur on days in which less than half of the league is playing.  Having more off-nights helps you to maximize the amount of starts you can get in a week.

*Update 1.1.0*
Added support for ESPN leagues.  This feature hasn't been thoroughly tested yet.  If you run into problems, please just reset the page to reload the data.

*Update 1.1.4*
Major bug fixes and added ability to change colour of icons.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Fantasy Hockey Scheduler Fantasy Hockey Scheduler
ID pahklfnmgmigjcjdpeaicgkbmcomgjel
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/fantasy-hockey-scheduler/pahklfnmgmigjcjdpeaicgkbmcomgjel
คำอธิบาย See a player's remaining games and off-nights in the week
ขนาดไฟล์ 77.03 KB
จำนวนการติดตั้ง 205
เวอร์ชันปัจจุบัน 1.1.5
อัปเดตครั้งล่าสุด 2023-01-31
วันที่เผยแพร่ 2021-11-18
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://goal-line-fantasy.herokuapp.com
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://docs.google.com/document/d/18OftCZ1BDF6R3IcKlcZFUFJ6o-T_NT_ksH_IRpUdMeI/edit?usp=sharing
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fantasy Hockey Scheduler",
    "description": "See a player's remaining games and off-nights in the week",
    "version": "1.1.5",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/hockey.fantasysports.yahoo.com\/hockey\/*",
                "https:\/\/fantasy.espn.com\/hockey\/*"
            ],
            "js": [
                "jquery-2.2.0.min.js",
                "background.js",
                "alertify.min.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "action": {
        "default_popup": "background.html",
        "default_icon": {
            "16": "\/images\/icon16.png",
            "32": "\/images\/icon32.png",
            "48": "\/images\/icon48.png",
            "128": "\/images\/icon128.png"
        }
    },
    "icons": {
        "16": "\/images\/icon16.png",
        "32": "\/images\/icon32.png",
        "48": "\/images\/icon48.png",
        "128": "\/images\/icon128.png"
    }
}