SharpSports

SharpSports

Link your sportsbook account with any sports media / tool provider in the SharpSports network.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "SharpSports",
  "description": "Link your sportsbook account with any sports media / tool provider in the SharpSports network.",
  "version": "1.3.0",
  "icons": {
    "16": "icon_16.png",
    "32": "icon_32.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "action": {
    "default_icon": "icon_128.png"
  },
  "background": {
    "service_worker": "background/main.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_scripts/main.js"
      ]
    },
    {
      "matches": [
        "https://*.sportsbook.fanduel.com/*"
      ],
      "js": [
        "content_scripts/FanduelAPI.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://www.draftkings.com/lobby*"
      ],
      "js": [
        "content_scripts/DraftKingsAPI.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://*.sportsbook.fanduel.com/*"
      ],
      "js": [
        "content_scripts/FanduelCookies.js"
      ]
    },
    {
      "matches": [
        "https://app.prizepicks.com/*"
      ],
      "js": [
        "content_scripts/PrizePicksAPI.js"
      ]
    },
    {
      "matches": [
        "https://app.hardrock.bet/"
      ],
      "js": [
        "content_scripts/HardRockAPI.js"
      ]
    },
    {
      "matches": [
        "https://*.betrivers.com/*",
        "https://*.betrivers.ca/*"
      ],
      "js": [
        "content_scripts/BetRiversAPI.js"
      ]
    },
    {
      "matches": [
        "https://underdogfantasy.com/*"
      ],
      "js": [
        "content_scripts/UnderdogAPI.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/lib/pusher.js",
        "/lib/datadog.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "https://app.hardrock.bet/*",
    "https://*.fanduel.com/*",
    "https://*.draftkings.com/*",
    "https://api.sharpsports.io/*",
    "https://http-intake.logs.datadoghq.com/api/*",
    "https://app.prizepicks.com/*",
    "*://*.prizepicks.com/",
    "https://*.betrivers.com/*",
    "https://*.betrivers.ca/*",
    "https://underdogfantasy.com/*"
  ],
  "permissions": [
    "tabs",
    "storage",
    "cookies",
    "webRequest"
  ]
}