Better Sleeper

Better Sleeper

Enhanced Sleeper.com Fantasy Football features Allows the League table to be sorted and viewed in an improved way.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Better Sleeper",
  "version": "1.3.1",
  "description": "Enhanced Sleeper.com Fantasy Football features Allows the League table to be sorted and viewed in an improved way.",
  "background": {
    "service_worker": "scripts/background.js"
  },
  "host_permissions": [
    "*://sleeper.com/*"
  ],
  "content_scripts": [
    {
      "js": [
        "scripts/config.js",
        "scripts/utils.js",
        "scripts/PlayerRoster.js",
        "scripts/main.js",
        "scripts/detailsComponent.js",
        "scripts/content.js"
      ],
      "css": [
        "style.css"
      ],
      "matches": [
        "*://sleeper.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "48": "img/Better_Sleeper_48.png",
    "128": "img/Better_Sleeper_128.png"
  }
}