LM Note Generator For ESPN Fantasy Football
Build All Time Leader Board, Record Book, and Weekly Power Rankings for your ESPN Fantasy Football League!
Τι είναι το LM Note Generator For ESPN Fantasy Football;
Το LM Note Generator For ESPN Fantasy Football είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον jpmayerunc, και η κύρια λειτουργία του είναι "Build All Time Leader Board, Record Book, and Weekly Power Rankings for your ESPN Fantasy Football League!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης LM Note Generator For ESPN Fantasy Football
Λήψη αρχείων επέκτασης LM Note Generator For ESPN Fantasy Football σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
A simple tool for creating content for your public ESPN fantasy football league. To use the extension, navigate to your ESPN Fantasy Football League Home page (not your team page), and the icon should activate allowing you to launch the popup form. For more instructions check the wiki: https://github.com/jpmayer/fantasy-chrome-extension/wiki Getting Started: https://github.com/jpmayer/fantasy-chrome-extension/wiki/Getting%20Started FAQ: https://github.com/jpmayer/fantasy-chrome-extension/wiki/Frequently-Asked-Questions
Βασικές Πληροφορίες Επέκτασης
Όνομα | LM Note Generator For ESPN Fantasy Football |
ID | ahcblhpcealjpkmndgmkdnebbjakicno |
Επίσημο URL | https://chromewebstore.google.com/detail/lm-note-generator-for-esp/ahcblhpcealjpkmndgmkdnebbjakicno |
Περιγραφή | Build All Time Leader Board, Record Book, and Weekly Power Rankings for your ESPN Fantasy Football League! |
Μέγεθος Αρχείου | 99.17 KB |
Αριθμός Εγκαταστάσεων | 1,531 |
Τρέχουσα Έκδοση | 2.0.0 |
Τελευταία Ενημέρωση | 2021-09-05 |
Ημερομηνία Δημοσίευσης | 2018-09-12 |
Αξιολόγηση | 4.26/5 Συνολικά 42 Αξιολογήσεις |
Προγραμματιστής | jpmayerunc |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/jpmayer/fantasy-chrome-extension |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/jpmayer/fantasy-chrome-extension/wiki |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "LM Note Generator For ESPN Fantasy Football", "version": "2.0.0", "description": "Build All Time Leader Board, Record Book, and Weekly Power Rankings for your ESPN Fantasy Football League!", "permissions": [ "activeTab", "tabs", "declarativeContent", "storage", "http:\/\/games.espn.com\/" ], "background": { "scripts": [ "js\/script.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*.espn.com\/*", "https:\/\/*.espn.com\/*" ], "js": [ "vendor\/html2canvas.min.js", "js\/screenshot.js" ] } ], "web_accessible_resources": [ "js\/screenshot.js" ], "options_page": "html\/options.html", "page_action": { "default_popup": "html\/popup.html", "default_icon": { "16": "images\/LeagueManagerNoteLogo16-rounded.png", "32": "images\/LeagueManagerNoteLogo32-rounded-monotone.png", "48": "images\/LeagueManagerNoteLogo48-rounded-monotone.png", "128": "images\/LeagueManagerNoteLogo128-rounded-monotone.png" } }, "icons": { "16": "images\/LeagueManagerNoteLogo16-rounded.png", "32": "images\/LeagueManagerNoteLogo32-rounded-monotone.png", "48": "images\/LeagueManagerNoteLogo48-rounded-monotone.png", "128": "images\/LeagueManagerNoteLogo128-rounded-monotone.png" }, "manifest_version": 2 } |