Better DeepRoute.com

Better DeepRoute.com

Simple extension that improves usability of DeepRoute.com. Things it currently does: -Sorts "Free Agent Watch" and "Current…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Better DeepRoute.com",
  "version": "2019.09.05.1",
  "content_scripts": [
    {
      "matches": [
        "http://deeproute.com/*?js=rosters*",
        "http://deeproute.com/*?js=freeagents*",
        "http://deeproute.com/*?js=trades*"
      ],
      "js": [
        "jquery-3.2.1.min.js",
        "replace_bday_with_age.js"
      ]
    },
    {
      "matches": [
        "http://deeproute.com/*?js=freeagents*&posilook=offer*",
        "http://deeproute.com/*?js=freeagents*&fawatch=y*"
      ],
      "js": [
        "jquery-3.2.1.min.js",
        "sort_roster.js"
      ]
    },
    {
      "matches": [
        "http://deeproute.com/*?js=oneplayer*"
      ],
      "js": [
        "jquery-3.2.1.min.js",
        "oneplayer.js"
      ]
    },
    {
      "matches": [
        "http://deeproute.com/*?js=freeagents*"
      ],
      "js": [
        "jquery-3.2.1.min.js",
        "fix_FA_cap.js"
      ]
    },
    {
      "matches": [
        "http://deeproute.com/*js=loggerinc*"
      ],
      "js": [
        "jquery-3.2.1.min.js",
        "log2csv.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "trades.js"
  ]
}