DraftNight Draft Board
DraftNight.com - this extension creates a live draft board for your fantasy football league.
Cos'è DraftNight Draft Board?
DraftNight Draft Board è un'estensione di Chrome sviluppata da draftnight, e la sua funzione principale è "DraftNight.com - this extension creates a live draft board for your fantasy football league.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione DraftNight Draft Board
Scarica i file di estensione DraftNight Draft Board in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | mlacoffeehmpkkdajjgmhgcpfkonlnjn |
| URL Ufficiale | https://chromewebstore.google.com/detail/draftnight-draft-board/mlacoffeehmpkkdajjgmhgcpfkonlnjn |
| Descrizione | DraftNight.com - this extension creates a live draft board for your fantasy football league. |
| Dimensione del File | 299 KB |
| Conteggio Installazioni | 590 |
| Versione Corrente | 1.0 |
| Ultimo Aggiornamento | 2021-07-28 |
| Data di Pubblicazione | 2021-07-28 |
| Valutazione | 3.50/5 Totale 2 Valutazioni |
| Sviluppatore | draftnight |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://www.draftnight.com |
| URL della Pagina di Aiuto | https://www.draftnight.com |
| Lingue Supportate | 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\/*"
]
} | |