Shotgun: Game Pass enhancer

Shotgun: Game Pass enhancer

Enhances the NFL Game Pass experience with in-game smart play searching, favoriting and more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Enhances the NFL Game Pass experience with in-game smart play searching, favoriting and more.",
  "version": "0.2.2",
  "name": "Shotgun: Game Pass enhancer",
  "short_name": "Shotgun",
  "browser_action": {
    "default_icon": "shotgun-shell-small.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://gamepass.nfl.com/game/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ]
    }
  ],
  "icons": {},
  "manifest_version": 2,
  "permissions": [
    "storage",
    "activeTab"
  ],
  "web_accessible_resources": [
    "star-50.png",
    "star-50-filled.png"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}