Mint.com Sort Accounts

Sorts accounts on the mint.com overview page by account balance. I.e., like they used to be sorted before the last update
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Mint.com Sort Accounts",
  "description": "Sorts accounts on the mint.com overview page by account balance.  I.e., like they used to be sorted before the last update",
  "version": "1.1.0",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "https://mint.intuit.com/*"
      ],
      "js": [
        "mintSortAccounts.user.js"
      ]
    }
  ]
}