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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | DraftNight Draft Board |
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\/*" ] } |