Fantasy Hockey Lines
Displays the lineup position of a Yahoo! Fantasy players.
Fantasy Hockey Lines क्या है?
Fantasy Hockey Lines Aman Kang द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Displays the lineup position of a Yahoo! Fantasy players."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Fantasy Hockey Lines एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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 |
ईमेल | [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\/*" ] } |