BitBucket Comment Catalog

BitBucket Comment Catalog

Lets the user define comment templates for BitBucket server. For each template, a button is added to the BitBucket pull request page. When clicking the button, the comment text from the configured template is automatically added to the pull request.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "BitBucket Comment Catalog",
  "version": "1.1",
  "description": "Lets the user define comment templates for BitBucket server, that can then be added to the selected pull request via buttons.",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "109.0"
    }
  },
  "icons": {
    "16": "res/img/icon_16.png",
    "48": "res/img/icon_48.png",
    "128": "res/img/icon_128.png",
    "256": "res/img/icon.svg"
  },
  "permissions": [
    "storage"
  ],
  "options_ui": {
    "page": "src/options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*/repos/*/pull-requests/*"
      ],
      "js": [
        "src/script/content.js"
      ]
    }
  ]
}