Fantasy Basketball WZRD

Fantasy Basketball WZRD

Fantasy Basketball WZRD will help ESPN & Yahoo Fantasy Basketball owners win their league.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Fantasy Basketball WZRD",
  "version": "6.15.3",
  "description": "Fantasy Basketball WZRD will help ESPN & Yahoo Fantasy Basketball owners win their league.",
  "icons": {
    "48": "assets/icons/icon48.png",
    "128": "assets/icons/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://fantasy.espn.com/basketball/*"
      ],
      "js": [
        "espn/shared.js"
      ],
      "css": [
        "espn/shared-style.css"
      ]
    },
    {
      "matches": [
        "https://basketball.fantasysports.yahoo.com/nba/*"
      ],
      "js": [
        "yahoo/leagueTypeSetup.js",
        "yahoo/teamPage.js",
        "yahoo/leaguePage.js"
      ],
      "css": [
        "espn/shared-style.css"
      ]
    },
    {
      "matches": [
        "https://basketball.fantasysports.yahoo.com/nba/*/research*"
      ],
      "js": [
        "yahoo/researchPage.js"
      ]
    },
    {
      "matches": [
        "https://basketball.fantasysports.yahoo.com/nba/*/buzzindex*"
      ],
      "js": [
        "yahoo/transactionTrendsPage.js"
      ]
    },
    {
      "matches": [
        "https://basketball.fantasysports.yahoo.com/nba/*/matchup*"
      ],
      "js": [
        "yahoo/matchupsPage.js"
      ]
    },
    {
      "matches": [
        "https://basketball.fantasysports.yahoo.com/nba/*/players*"
      ],
      "js": [
        "yahoo/playersPage.js"
      ]
    }
  ],
  "manifest_version": 3,
  "action": {
    "default_icon": "assets/icons/icon.png",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://www.sportswzrd.com/*"
  ]
}