Yahoo Fantasy Basketball Extender
Enhances yahoo fantasy basketball!
什么是Yahoo Fantasy Basketball Extender?
Yahoo Fantasy Basketball Extender是由Sahil Agarwal开发的Chrome扩展程序,该扩展的主要功能是“Enhances yahoo fantasy basketball!”。
扩展截图
下载Yahoo Fantasy Basketball Extender扩展crx文件
下载Yahoo Fantasy Basketball Extender扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
An extension for yahoo fantasy basketball, showing the total games each player is playing this week.
v1.8.1
- Added 2020-2021 NBA games
v1.7.0
- Added 2019-2020 NBA games
v1.6.0
- Added 2018-2019 NBA games
v1.5.1
- Fixed matchup page week (the url shows the wrong week, so upped it by 1) 扩展基本信息
| 名称 | |
| ID | dajecldpmkjkhofjdmblkcgplmapkiee |
| 官方URL | https://chromewebstore.google.com/detail/yahoo-fantasy-basketball/dajecldpmkjkhofjdmblkcgplmapkiee |
| 简介 | Enhances yahoo fantasy basketball! |
| 文件大小 | 18.33 KB |
| 安装次数 | 258 |
| 当前版本 | 1.8.1 |
| 更新时间 | 2020-12-26 |
| 上架时间 | 2020-04-23 |
| 评分 | 1.00/5 共1次评分 |
| 开发者 | Sahil Agarwal |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/sahilda/yahoo-fantasybb-extender |
| 帮助页面URL | https://github.com/sahilda/yahoo-fantasybb-extender |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Yahoo Fantasy Basketball Extender",
"short_name": "yahoo fbb extender",
"version": "1.8.1",
"description": "Enhances yahoo fantasy basketball!",
"icons": {
"96": "basketball.png",
"128": "basketball_128.png"
},
"homepage_url": "https:\/\/github.com\/sahilda\/yahoo-fantasybb-extender",
"permissions": [
"activeTab",
"https:\/\/basketball.fantasysports.yahoo.com\/nba\/*\/*"
],
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"https:\/\/basketball.fantasysports.yahoo.com\/nba\/*\/*"
],
"js": [
"content_script.js"
]
}
]
} | |