WalterPicks League Sync

WalterPicks League Sync

Sync fantasy sports leagues with WalterPickst

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_extensionName__",
  "version": "1.0.0",
  "description": "__MSG_extensionDescription__",
  "background": {
    "service_worker": "src/pages/background/index.js",
    "type": "module"
  },
  "permissions": [
    "host_permissions"
  ],
  "host_permissions": [
    "https://fantasy.espn.com/*",
    "https://sleeper.com/*",
    "https://sleeper.app/*",
    "https://sports.yahoo.com/*",
    "https://walterpicks.com/*"
  ],
  "action": {
    "default_popup": "src/pages/popup/index.html",
    "default_icon": "/images/WalterPicks48x48.png"
  },
  "icons": {
    "16": "/images/WalterPicks16x16.png",
    "32": "/images/WalterPicks32x32.png",
    "48": "/images/WalterPicks48x48.png",
    "128": "/images/WalterPicks128x128.png"
  },
  "content_scripts": [
    {
      "js": [
        "src/pages/espn/index.js"
      ],
      "run_at": "document_start",
      "world": "MAIN",
      "matches": [
        "https://fantasy.espn.com/football*"
      ],
      "css": []
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/*.js",
        "assets/css/*.css",
        "icon-128.png",
        "icon-34.png"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}