RotoGrinders - Underdog Tools

RotoGrinders - Underdog Tools

This extension displays RotoGrinders' individual player stat projections on Underdog Fantasy

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "RotoGrinders - Underdog Tools",
  "description": "RotoGrinders projections and player props on Underdog Fantasy",
  "version": "1.0.38",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*.rotogrinders.com/*",
    "*://underdogfantasy.com/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "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"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "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"
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{fdf8322a-569e-41b3-8505-c883a302a906}"
    }
  }
}