Fantasy Baseball Top Prospect Finder
Highlight the players who appear on MLB's Top Prospect list.
Was ist Fantasy Baseball Top Prospect Finder?
Fantasy Baseball Top Prospect Finder ist eine Chrome-Erweiterung, die von Fantasy Gizmo entwickelt wurde, und ihr Hauptmerkmal ist "Highlight the players who appear on MLB's Top Prospect list.".
Erweiterungsscreenshots
Fantasy Baseball Top Prospect Finder-Erweiterungs-CRX-Datei herunterladen
Laden Sie Fantasy Baseball Top Prospect Finder-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Highlight players who are among the top 100 prospects and show scouting information from MLB Pipeline. Great for staying on top of up-and-coming rookies! Works with ESPN, Yahoo, CBS Sports, and Fantrax leagues.
Grundlegende Informationen zur Erweiterung
Name | Fantasy Baseball Top Prospect Finder |
ID | ofolgoniaiedciagcbfimldjhadnkdjg |
Offizielle URL | https://chromewebstore.google.com/detail/fantasy-baseball-top-pros/ofolgoniaiedciagcbfimldjhadnkdjg |
Beschreibung | Highlight the players who appear on MLB's Top Prospect list. |
Dateigröße | 71.23 KB |
Installationsanzahl | 64 |
Aktuelle Version | 0.1.4 |
Letztes Update | 2021-02-23 |
Veröffentlichungsdatum | 2021-02-16 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | Fantasy Gizmo |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://fantasygizmo.com?utm_source=chrome-extension-store |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Fantasy Baseball Top Prospect Finder", "version": "0.1.4", "description": "Highlight the players who appear on MLB's Top Prospect list.", "background": { "scripts": [ "js\/background.js", "js\/library.js" ], "persistent": false }, "manifest_version": 2, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "include_globs": [ "*:\/\/fantasy.espn.com\/baseball\/*", "*:\/\/baseball.fantasysports.yahoo.com\/*", "*:\/\/*.baseball.cbssports.com\/*", "*:\/\/*fantrax.com\/fantasy*" ], "css": [ "css\/prospects.css" ], "js": [ "js\/jquery-3.5.1.min.js", "js\/library.js", "js\/contentscript.js" ] } ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "options_page": "html\/options.html", "permissions": [ "*:\/\/fantasy.espn.com\/baseball\/*", "*:\/\/baseball.fantasysports.yahoo.com\/*", "*:\/\/*.baseball.cbssports.com\/*", "*:\/\/*fantrax.com\/fantasy*", "storage" ], "web_accessible_resources": [ "images\/*" ] } |