DraftNight Draft Board
DraftNight.com - this extension creates a live draft board for your fantasy football league.
Vad är DraftNight Draft Board?
DraftNight Draft Board är en Chrome-tillägg utvecklad av draftnight, och dess huvudfunktion är "DraftNight.com - this extension creates a live draft board for your fantasy football league.".
Tilläggsskärmbilder
Ladda ner DraftNight Draft Board-förlängningens CRX-fil
Ladda ner DraftNight Draft Board-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | DraftNight Draft Board |
ID | mlacoffeehmpkkdajjgmhgcpfkonlnjn |
Officiell webbadress | https://chromewebstore.google.com/detail/draftnight-draft-board/mlacoffeehmpkkdajjgmhgcpfkonlnjn |
Beskrivning | DraftNight.com - this extension creates a live draft board for your fantasy football league. |
Filstorlek | 299 KB |
Antal Installationer | 590 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2021-07-28 |
Publiceringsdatum | 2021-07-28 |
Betyg | 3.50/5 Totalt 2 Betyg |
Utvecklare | draftnight |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://www.draftnight.com |
Hjälpsida URL | https://www.draftnight.com |
Stödda Språk | 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\/*" ] } |