LineupSorter

LineupSorter

Allows you to quickly sort your Yahoo Fantasy Basketball roster for the week.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "LineupSorter",
  "short_name": "lnupsorter",
  "description": "Allows you to quickly sort your Yahoo Fantasy Basketball roster for the week.",
  "version": "3.0",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "browser_action": {
    "default_icon": "img/icon.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://basketball.fantasysports.yahoo.com/nba/*"
      ],
      "css": [
        "fantasy.css"
      ],
      "js": [
        "js/fantasy.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "tabs"
  ]
}