BitBucket Comment Catalog

BitBucket Comment Catalog

Lets the user define comment templates for BitBucket server, that can then be added to the selected pull request via buttons.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "BitBucket Comment Catalog",
  "version": "1.2",
  "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"
  },
  "permissions": [
    "storage"
  ],
  "options_ui": {
    "page": "src/options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*/repos/*/pull-requests/*"
      ],
      "js": [
        "src/script/content.js"
      ]
    }
  ]
}