Footballguys Extension: Manage My Leagues

Footballguys Extension: Manage My Leagues

Import leagues to Footballguys

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Footballguys Extension: Manage My Leagues",
  "homepage_url": "https://www.footballguys.com/leagues",
  "version": "1.1.0",
  "author": "[email protected]",
  "description": "Import leagues to Footballguys",
  "action": {
    "default_popup": "popup/popup.html",
    "default_icon": {
      "16": "./icons/16px.png",
      "32": "./icons/32px.png",
      "48": "./icons/48px.png",
      "128": "./icons/128px.png"
    }
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "permissions": [
    "cookies"
  ],
  "host_permissions": [
    "*://*.footballguys.com/*",
    "*://*.espn.com/*",
    "*://*.nfl.com//*",
    "*://*.cbssports.com//*"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.footballguys.com/*"
    ]
  },
  "icons": {
    "16": "./icons/16px.png",
    "32": "./icons/32px.png",
    "48": "./icons/48px.png",
    "128": "./icons/128px.png"
  }
}