Bitbucket Server Extension

Bitbucket Server Extension

Allow to add group of reviewers for pull request in bitbucket server + other features

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 Server Extension",
  "description": "Allow to add group of reviewers for pull request in bitbucket server + other features",
  "version": "2.2.17",
  "permissions": [
    "storage",
    "alarms",
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "img/stash19.png",
    "48": "img/stash48.png",
    "128": "img/stash148.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "img/stash48.png",
      "38": "img/stash48.png"
    },
    "default_popup": "userhosts.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/storage.js",
        "js/injector_loader.js"
      ],
      "matches": [
        "*://*.bitbucket.org/*",
        "*://*.atlassian.com/*"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/storage.js",
      "js/background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "js/stash_page.js",
    "js/stash_detector.js",
    "css/page_injection.css",
    "js/default.json",
    "js/template.txt",
    "img/stash128.png"
  ],
  "options_ui": {
    "page": "popup.html"
  }
}