Fantrax Baseball Live Feed + Highlights

Fantrax Baseball Live Feed + Highlights

Extension for Fantrax that allows fantasy baseball users to view streams and highlights of their players from their league site.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Fantrax Baseball Live Feed + Highlights",
  "version": "2.1",
  "description": "Extension for Fantrax that allows fantasy baseball users to view streams and highlights of their players from their league site.",
  "background": {
    "scripts": [
      "background.js",
      "jquery.min.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.foodexsport.com/sport/*",
        "http://www.foodexsport.com/mlb-games/*",
        "http://www.volokit.com/mlb-games/*",
        "http://www.volokit.com/volostream/mlb-games/*"
      ],
      "js": [
        "declutter.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "https://www.mlb.com/video/search*",
    "https://www.fantrax.com/fantasy/league/*/livescoring*",
    "https://www.fantrax.com/fantasy/league/*/team/roster*"
  ],
  "web_accessible_resources": [
    "icons/*.png"
  ]
}