Bitbucket code review

Bitbucket code review

Improvements to Bitbucket and JIRA for easier code reviewing

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Bitbucket code review",
  "short_name": "Bitbucket CR",
  "description": "Improvements to Bitbucket and JIRA for easier code reviewing",
  "version": "1.0",
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://bitbucket.org/*/commits/*"
      ],
      "js": [
        "dist/bitbucket.js"
      ],
      "css": [
        "styles.css"
      ]
    },
    {
      "matches": [
        "https://*.atlassian.net/browse/*"
      ],
      "js": [
        "dist/jira.js"
      ],
      "css": [
        "styles.css"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "permissions": [
    "storage"
  ]
}