LeetSports Fantasy Hockey Tools
Fantasy hockey tools
什么是LeetSports Fantasy Hockey Tools?
LeetSports Fantasy Hockey Tools是由LeetSports开发的Chrome扩展程序,该扩展的主要功能是“Fantasy hockey tools”。
扩展截图
下载LeetSports Fantasy Hockey Tools扩展crx文件
下载LeetSports Fantasy Hockey Tools扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
LeetSports is a collection of fantasy hockey tools to help you win your ESPN, Yahoo, and Fantrax fantasy hockey pools in 2021. This fantasy hockey extension displays the lineup position of any ESPN, Yahoo, and Fantrax fantasy hockey players, including lines, power play, and penalty kill deployment directly on the website. Now you are also able to view remaining games and off night games (< half of teams are playing) for each player. You can see games for the remainder of the week or set a custom date range. Look out for more functionality coming soon! This will include a variety of tools to help you win your fantasy hockey pool this year! Note: You may need to force refresh your fantasy hockey website to get it work the first time after installing. To do this try Shift-Cmd-R on Mac or Ctrl-F5 for Windows. If this doesn't work, you can always try restarting chrome as well or toggling the extension on/off in chrome://extensions/
扩展基本信息
名称 | LeetSports Fantasy Hockey Tools |
ID | immpookfmnhkhekgapcepemkdehdlgbb |
官方URL | https://chromewebstore.google.com/detail/leetsports-fantasy-hockey/immpookfmnhkhekgapcepemkdehdlgbb |
简介 | Fantasy hockey tools |
文件大小 | 24.69 KB |
安装次数 | 1,017 |
当前版本 | 1.0.4 |
更新时间 | 2022-02-06 |
上架时间 | 2021-10-14 |
评分 | 4.43/5 共14次评分 |
开发者 | LeetSports |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "LeetSports Fantasy Hockey Tools", "description": "Fantasy hockey tools", "version": "1.0.4", "icons": { "128": "res\/icon.png" }, "browser_action": { "default_icon": "res\/icon.png", "default_popup": "popup.html", "default_title": "LeetSports" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/fantasy.espn.com\/hockey\/*" ], "js": [ "espn_content.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/hockey.fantasysports.yahoo.com\/hockey\/*" ], "js": [ "yahoo_content.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/www.fantrax.com\/fantasy\/league\/*" ], "js": [ "fantrax_content.js" ], "run_at": "document_end" } ], "permissions": [ "tabs", "storage", "http:\/\/leetsports-env.eba-fr7wdxc8.us-west-2.elasticbeanstalk.com\/*" ] } |