Bitbucket With Wings

Bitbucket With Wings

A set of enhancements for Bitbucket

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 With Wings",
  "version": "0.4.0",
  "description": "A set of enhancements for Bitbucket",
  "browser_action": {
    "default_icon": "./assets/icon.png",
    "default_popup": "./dist/popup/index.html"
  },
  "options_ui": {
    "page": "./dist/options/index.html",
    "open_in_tab": true,
    "chrome_style": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://bitbucket.org/*",
        "http://bitbucket.org/*"
      ],
      "js": [
        "./dist/content/vendor/clipboard-2.0.8.global.js",
        "./dist/content/vendor/jquery-3.6.0.global.js",
        "./dist/content/index.global.js"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "./assets/icon.png",
    "48": "./assets/icon.png",
    "128": "./assets/icon.png"
  }
}