Bitbucket Diff Tree

Bitbucket Diff Tree

Extension to display diff tree for Bitbucket

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Bitbucket Diff Tree",
  "description": "Extension to display diff tree for Bitbucket",
  "version": "2.1.1",
  "manifest_version": 2,
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage"
  ],
  "optional_permissions": [
    "tabs",
    "https://bitbucket.org/*"
  ],
  "content_scripts": [
    {
      "js": [
        "libs/jquery.min.js",
        "libs/jstree/jstree.min.js",
        "libs/jquery-resizable.js",
        "libs/jquery.md5.js",
        "js/namespaces.js",
        "js/models/treeNodeModel.js",
        "js/models/pullRequestModel.js",
        "js/helpers/hashingHelper.js",
        "js/helpers/htmlHelper.js",
        "js/helpers/pullRequestHelper.js",
        "js/helpers/localStorageHelper.js",
        "js/helpers/treeHelper.js",
        "js/observers/newCommentObserver.js",
        "js/observers/fileChangesObserver.js",
        "js/content.js"
      ],
      "css": [
        "libs/jstree/jstree.min.css",
        "css/content.css"
      ],
      "web_accessible_resources": [
        "images/vsizegrip.png"
      ],
      "matches": [
        "https://bitbucket.org/*"
      ]
    }
  ]
}