Examine source code of Trello Card Aging

Inspect and view changes in Trello Card Aging source codes across current and past versions
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": "Trello Card Aging",
  "version": "1.8",
  "description": "Provides some features for Trello, related with the card activity",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "https://trello.com/b/*"
      ],
      "js": [
        "jquery-3.1.0.js",
        "logic.js"
      ],
      "css": [
        "style.css"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "64": "icon64.png",
    "128": "icon128.png",
    "256": "icon256.png"
  },
  "browser_action": {
    "default_icon": "icon64.png",
    "default_popup": "options.html"
  },
  "author": "fernand-o",
  "background": {
    "scripts": [
      "jquery-3.1.0.js",
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "storage",
    "https://trello.com/b/*"
  ]
}