NBAspect

NBAspect

Corrects aspect ratio of the NBA League Pass web player when viewing fullscreen on non 16:9 monitor. Not affiliated with the NBA.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "NBAspect",
  "version": "1.0",
  "description": "Corrects aspect ratio of the NBA League Pass web player when viewing fullscreen on non 16:9 monitor. Not affiliated with the NBA.",
  "author": "[email protected]",
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "content_scripts": [
    {
      "js": [
        "scripts/content.js"
      ],
      "matches": [
        "https://www.nba.com/game/*"
      ]
    }
  ]
}