Examine source code of Scrum 2 Trello

Inspect and view changes in Scrum 2 Trello 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": "Scrum 2 Trello",
  "version": "1.2",
  "description": "Adds Scrum to your Trello",
  "content_scripts": [
    {
      "matches": [
        "https://trello.com/*"
      ],
      "js": [
        "jquery-2.1.4.min.js",
        "trelloscrum.js"
      ],
      "css": [
        "trelloscrum.css"
      ]
    }
  ],
  "manifest_version": 2,
  "icons": {
    "128": "trello-scrum-icon.png"
  },
  "web_accessible_resources": [
    "images/storypoints-icon.png",
    "images/points-done.png",
    "images/burndown_for_trello_icon_12x12.png",
    "images/burndown_for_trello_icon_18x18.png",
    "images/trello-scrum-icon_12x12.png",
    "images/trello-scrum-icon_18x18.png"
  ],
  "permissions": [
    "storage"
  ]
}