Examine source code of Trello Branch Names

Inspect and view changes in Trello Branch Names 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",
  "manifest_version": 2,
  "name": "Trello Branch Names",
  "description": "Converts title of Trello cards to git-compatible branch names",
  "version": "1.5.0",
  "icons": {
    "128": "img/icon128.png"
  },
  "background": {
    "page": "background.html"
  },
  "page_action": {
    "default_title": "Trello Branch Names",
    "default_icon": {
      "19": "img/icon19.png",
      "38": "img/icon38.png"
    }
  },
  "web_accessible_resources": [
    "oauth2/oauth2.html",
    "js/jquery.min.map"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://trello.com/*"
      ],
      "js": [
        "js/jquery-1.9.1.min.js",
        "js/content.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "https://github.com/"
  ]
}