DraftNight Draft Board
DraftNight.com - this extension creates a live draft board for your fantasy football league.
什么是DraftNight Draft Board?
DraftNight Draft Board是由draftnight开发的Chrome扩展程序,该扩展的主要功能是“DraftNight.com - this extension creates a live draft board for your fantasy football league.”。
扩展截图
下载DraftNight Draft Board扩展crx文件
下载DraftNight Draft Board扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
DraftNight.com - create a live draft board for your ESPN fantasy football draft. Once you install this extension, go to your draft page on ESPN. There will be a new button at the top-right that says Draft Board. If the icon is red then there's a problem streaming the league data. If it's green then you're good to go. Click the button and your full-screen draft board will open in a new tab.
Remember, you need to keep the ESPN draft page open in a tab - otherwise the steaming will stop and your draft board won't get updated. 扩展基本信息
| 名称 | |
| ID | mlacoffeehmpkkdajjgmhgcpfkonlnjn |
| 官方URL | https://chromewebstore.google.com/detail/draftnight-draft-board/mlacoffeehmpkkdajjgmhgcpfkonlnjn |
| 简介 | DraftNight.com - this extension creates a live draft board for your fantasy football league. |
| 文件大小 | 299 KB |
| 安装次数 | 590 |
| 当前版本 | 1.0 |
| 更新时间 | 2021-07-28 |
| 上架时间 | 2021-07-28 |
| 评分 | 3.50/5 共2次评分 |
| 开发者 | draftnight |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://www.draftnight.com |
| 帮助页面URL | https://www.draftnight.com |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "DraftNight Draft Board",
"description": "DraftNight.com - this extension creates a live draft board for your fantasy football league.",
"version": "1.0",
"browser_action": {
"default_icon": "icon.png"
},
"web_accessible_resources": [
"\/launch.js"
],
"content_scripts": [
{
"matches": [
"https:\/\/fantasy.espn.com\/football\/*"
],
"js": [
"launch.js"
],
"run_at": "document_end"
}
],
"permissions": [
"https:\/\/fantasy.espn.com\/football\/*"
]
} | |