RotoGrinders - Underdog Tools

RotoGrinders - Underdog Tools

RotoGrinders projections and player props on Underdog Fantasy

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "RotoGrinders - Underdog Tools",
  "description": "RotoGrinders projections and player props on Underdog Fantasy",
  "version": "1.0.25",
  "manifest_version": 3,
  "host_permissions": [
    "*://*.rotogrinders.com/*",
    "*://underdogfantasy.com/*"
  ],
  "background": {
    "service_worker": "background.js",
    "run_at": "document_start"
  },
  "content_scripts": [
    {
      "matches": [
        "*://underdogfantasy.com/pick-em/*"
      ],
      "js": [
        "libraries/jquery.min.js",
        "libraries/bindly.js",
        "content/statmapping.js",
        "content/element_binds.js",
        "content/main.js"
      ],
      "css": [
        "content/css/custom.css"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "incognito": "spanning",
  "icons": {
    "16": "./images/icon_16.png",
    "48": "./images/icon_48.png",
    "128": "./images/icon_128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "48": "./images/icon_48.png"
    }
  }
}