Fantasy Hockey Lines

Displays the lineup position of a Yahoo! Fantasy players.

Fantasy Hockey Linesとは何ですか?

Fantasy Hockey LinesはAman Kangによって開発されたChromeの拡張機能で、その主な機能は「Displays the lineup position of a Yahoo! Fantasy players.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Fantasy Hockey Lines拡張機能のCRXファイルをダウンロード

Fantasy Hockey Lines拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 Fantasy Hockey Lines Fantasy Hockey Lines
ID bbhedcjidjddbgcoplmganehemblknjg
公式URL https://chromewebstore.google.com/detail/fantasy-hockey-lines/bbhedcjidjddbgcoplmganehemblknjg
説明 Displays the lineup position of a Yahoo! Fantasy players.
ファイルサイズ 32.99 KB
インストール数 1,238
現在のバージョン 3.0
最終更新日 2024-02-03
公開日 2021-03-23
評価 4.83/5 合計 23 レビュー
開発者 Aman Kang
Eメール [email protected]
支払い方法 free
対応言語 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\/*"
    ]
}