Overdue Trello Cards First!

Overdue Trello Cards First!

This extension forces the Overdue Cards to the top.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Overdue Trello Cards First!",
  "description": "This extension forces the Overdue Cards to the top.",
  "version": "1.1.2",
  "icons": {
    "16": "images/16icon.png",
    "48": "images/48icon.png",
    "128": "images/128icon.png"
  },
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "https://trello.com/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/main.js"
      ],
      "run_at": "document_end"
    }
  ]
}