Fantasy Hockey Lines

Displays the lineup position of a Yahoo! Fantasy players.

Fantasy Hockey Lines là gì?

Fantasy Hockey Lines là một tiện ích mở rộng Chrome được phát triển bởi Aman Kang, và tính năng chính của nó là "Displays the lineup position of a Yahoo! Fantasy players.".

Ả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 Fantasy Hockey Lines

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

                        An extension that embeds the current lineup position of a Yahoo! Fantasy Hockey player directly onto the website. A coloured icon indicates the lineup position according to data from DailyFaceoff.

Updates:

v3.0
- Resolved critical break from updated Yahoo UI
- Added Moneypuck stat icon to display winning odds for goaltenders
- Automatic update of data every 1hr                    

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

Tên Fantasy Hockey Lines Fantasy Hockey Lines
ID bbhedcjidjddbgcoplmganehemblknjg
URL Chính Thức https://chromewebstore.google.com/detail/fantasy-hockey-lines/bbhedcjidjddbgcoplmganehemblknjg
Mô tả Displays the lineup position of a Yahoo! Fantasy players.
Kích Thước Tệp 32.99 KB
Số Lần Cài Đặt 1,238
Phiên Bản Hiện Tại 3.0
Cập Nhật Lần Cuối 2024-02-03
Ngày Phát Hành 2021-03-23
Đánh Giá 4.83/5 Tổng số 23 Đánh Giá
Nhà Phát Triển Aman Kang
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",
    "name": "Fantasy Hockey Lines",
    "short_name": "Fantasy Hockey Lines",
    "description": "Displays the lineup position of a Yahoo! Fantasy players.",
    "version": "3.0",
    "author": "Aman Kang",
    "manifest_version": 3,
    "icons": {
        "16": "images\/16.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/hockey.fantasysports.yahoo.com\/*",
                "https:\/\/www.dailyfaceoff.com\/teams\/*",
                "https:\/\/www.moneypuck.com\/*"
            ],
            "js": [
                "scripts\/content.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "19": "images\/16.png",
            "38": "images\/48.png"
        },
        "default_title": "Fantasy Hockey Lines",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "https:\/\/hockey.fantasysports.yahoo.com\/*"
    ]
}