Fantasy Hockey Lines
Displays the lineup position of a Yahoo! Fantasy players.
Co je Fantasy Hockey Lines?
Fantasy Hockey Lines je rozšíření Chrome vyvinuté Aman Kang, a jeho hlavní funkcí je „Displays the lineup position of a Yahoo! Fantasy players.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Fantasy Hockey Lines
Stáhněte si soubory rozšíření Fantasy Hockey Lines ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Fantasy Hockey Lines |
ID | bbhedcjidjddbgcoplmganehemblknjg |
Oficiální URL | https://chromewebstore.google.com/detail/fantasy-hockey-lines/bbhedcjidjddbgcoplmganehemblknjg |
Popis | Displays the lineup position of a Yahoo! Fantasy players. |
Velikost souboru | 32.99 KB |
Počet instalací | 1,238 |
Aktuální Verze | 3.0 |
Poslední Aktualizace | 2024-02-03 |
Datum Vydání | 2021-03-23 |
Hodnocení | 4.83/5 Celkem 23 Hodnocení |
Vývojář | Aman Kang |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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\/*" ] } |