FantasyLink

FantasyLink

Adds links to several fantasy baseball resources directly into you fantasy baseball website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "FantasyLink",
  "short_name": "FantasyLink",
  "version": "2.4.2",
  "description": "Adds links to several fantasy baseball resources directly into you fantasy baseball website.",
  "permissions": [
    "storage",
    "*://fantasy.espn.com/baseball/*",
    "*://*.baseball.cbssports.com/*",
    "*://baseball.fantasysports.yahoo.com/*"
  ],
  "icons": {
    "16": "img/icon16.png",
    "46": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://fantasy.espn.com/baseball/team*",
        "*://fantasy.espn.com/baseball/players*",
        "*://fantasy.espn.com/baseball/watchlist*",
        "*://*.baseball.cbssports.com/teams*",
        "*://*.baseball.cbssports.com/stats/stats-main*",
        "*://*.baseball.cbssports.com/transactions/trade*",
        "*://baseball.fantasysports.yahoo.com/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/library.js",
        "js/contentscript.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/library.js",
      "js/background.js"
    ]
  },
  "page_action": {
    "default_icon": {
      "19": "img/icon19.png",
      "38": "img/icon38.png"
    },
    "default_title": "FantasyLink"
  },
  "options_page": "html/options.html"
}