Examine source code of Trello Plus

Inspect and view changes in Trello Plus 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 Plus",
  "version": "1.1",
  "description": "Adds extra functionality to your Trello",
  "content_scripts": [
    {
      "matches": [
        "https://trello.com/*"
      ],
      "js": [
        "jquery-1.7.1.min.js",
        "trelloplus.js"
      ],
      "css": [
        "trelloplus.css"
      ]
    }
  ],
  "manifest_version": 2,
  "icons": {
    "128": "trello-plus-icon.png"
  },
  "web_accessible_resources": [
    "images/trello-plus-icon_12x12.png",
    "images/trello-plus-icon_18x18.png"
  ],
  "permissions": [
    "storage"
  ]
}