Examine source code of JIRA Buddy

Inspect and view changes in JIRA Buddy 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": "http://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "JIRA Buddy",
  "description": "__MSG_extensionDescription__",
  "version": "0.7",
  "default_locale": "en",
  "icons": {
    "16": "assets/img/icon_favicon-infobar.png",
    "48": "assets/img/icon_extension-prefs.png",
    "128": "assets/img/icon_store-dialogs.png"
  },
  "browser_action": {
    "default_icon": "assets/img/browser-button.png",
    "default_title": "__MSG_browserActionTitle__",
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "background": {
    "scripts": [
      "assets/js/background.js"
    ]
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "permissions": [
    "tabs",
    "https://*.atlassian.net/rest/api/2/"
  ]
}