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.”。
擴展截圖
下載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                     擴展基本資訊
| 名稱 |   |  
| ID | bbhedcjidjddbgcoplmganehemblknjg | 
| 官方網址 | 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 | 
| 電子郵箱 | [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\/*"
    ]
}  |  |