Fantasy Keeper

Chrome Extension for ESPN Fantasy Baseball to display additional custom player information stored in Google Sheets.

Τι είναι το Fantasy Keeper;

Το Fantasy Keeper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον advantagefantasysports, και η κύρια λειτουργία του είναι "Chrome Extension for ESPN Fantasy Baseball to display additional custom player information stored in Google Sheets.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Fantasy Keeper

Λήψη αρχείων επέκτασης Fantasy Keeper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Expand the features of ESPN's Fantasy Baseball game by tracking custom player information such as salaries, contracts, or advanced statistics from your team page.

--- What is Fantasy Keeper? ---

Fantasy Keeper is a Chrome Extension for ESPN Fantasy Baseball players that require more from their fantasy experience. Additional player information stored in a Google Sheet is displayed on your Team Page and in the Player Pool. 

Setup is easy. Create a Google Sheet containing two columns: MLB Player First Name and MLB Player Last Name. Once the Google Sheet is created set its view properties to public, publish the sheet (File->Publish from Google Sheets) and enter its sharing link in the Fantasy Keeper Chrome Extension Options. Finally select which columns in your Google Sheet you want ESPN Fantasy to display. Any additional columns you create are displayed as new columns on your team page and on the player pool page.

Features
---------
-Customize which Google Sheet Columns are displayed
-Customize which Google Sheet Workbook will be read
-Customize Google Sheet column names to track any arbitrary player information
-Fuzzy name matching between ESPN Fantasy and Google Sheet allow for minor player name spelling mismatches

Updates
--------
v0.15 - 6/20/2017
-Fixed display issues caused by out of lineup notification. 
v0.14 - 4/25/2017
-Added support for multi-word Google Sheet column naming. 
-Additional ESPN columns are now displayed in the order they are entered in the extension's settings.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Fantasy Keeper Fantasy Keeper
ID hpfghigmbhpfhcpogkmblalcliabinne
Επίσημο URL https://chrome.google.com/webstore/detail/hpfghigmbhpfhcpogkmblalcliabinne
Περιγραφή Chrome Extension for ESPN Fantasy Baseball to display additional custom player information stored in Google Sheets.
Μέγεθος Αρχείου 62.38 KB
Αριθμός Εγκαταστάσεων 51
Τρέχουσα Έκδοση 0.15
Τελευταία Ενημέρωση 2017-06-20
Ημερομηνία Δημοσίευσης 2017-06-20
Αξιολόγηση 4.75/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής advantagefantasysports
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fantasy Keeper",
    "description": "Chrome Extension for ESPN Fantasy Baseball to display additional custom player information stored in Google Sheets.",
    "version": "0.15",
    "browser_action": {
        "default_icon": "baseballicon48.png",
        "default_popup": "html\/popup.html"
    },
    "options_ui": {
        "page": "html\/options.html",
        "chrome_style": true
    },
    "icons": {
        "48": "baseballicon48.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "activeTab",
        "http:\/\/*.google.com\/",
        "https:\/\/*.google.com\/"
    ],
    "content_scripts": [
        {
            "js": [
                "js\/jquery.min.js",
                "js\/fuzzyset.js",
                "js\/contentscript.js"
            ],
            "matches": [
                "*:\/\/games.espn.go.com\/flb\/clubhouse*",
                "*:\/\/games.espn.go.com\/flb\/freeagency*",
                "*:\/\/games.espn.go.com\/flb\/trade*",
                "http:\/\/games.espn.com\/flb\/clubhouse*",
                "http:\/\/games.espn.com\/flb\/freeagency*",
                "http:\/\/games.espn.com\/flb\/trade*",
                "http:\/\/games.espn.com\/flb\/watchlist*",
                "http:\/\/games.espn.com\/flb\/playerrater*",
                "http:\/\/games.espn.com\/flb\/leaders*"
            ]
        }
    ]
}