Enhance Bitbucket

Enhance Bitbucket

A Chrome extension to make Bitbucket/Stash better.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Enhance Bitbucket",
  "short_name": "Enhance Bitucket",
  "version": "3.0.0",
  "manifest_version": 2,
  "description": "A Chrome extension to make Bitbucket/Stash better.",
  "page_action": {
    "default_icon": "img/diff-icon.png",
    "default_title": "Bitbucket/Stash Enhancements"
  },
  "content_scripts": [
    {
      "js": [
        "js/lib/jquery-2.1.1.min.js",
        "js/app/content.js"
      ],
      "css": [
        "css/content.css"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_start"
    }
  ]
}