Examine source code of Jira Followers Groups

Inspect and view changes in Jira Followers Groups 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": "Jira Followers Groups",
  "description": "Allows to create Jira followers groups and easily paste them in comments and description fields",
  "version": "1.0.0.3",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "icons": {
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Edit Jira Followers Groups"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/browse/*",
        "*://*/secure/*",
        "*://*/jira/browse/*",
        "*://*/jira/secure/*"
      ],
      "js": [
        "libs/jquery-ui-1.12.1.custom/external/jquery/jquery.js",
        "contentScript.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "options_ui": {
    "page": "options/options.html",
    "chrome_style": true
  }
}