Fantasy Keeper

Fantasy Keeper

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

Merlin
Additional files are visible only to premium users

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*"
      ]
    }
  ]
}