DraftNight Draft Board
DraftNight.com - this extension creates a live draft board for your fantasy football league.
Что такое DraftNight Draft Board?
DraftNight Draft Board - это расширение Chrome, разработанное draftnight, и его основная функция - "DraftNight.com - this extension creates a live draft board for your fantasy football league.".
Снимки экрана расширения
Скачать файл CRX расширения DraftNight Draft Board
Скачайте файлы расширений 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\/*"
]
} | |