Bitbucket Conventional Comments

Bitbucket Conventional Comments

Adds conventional comment shortcuts to the comment editor.

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 Conventional Comments",
  "description": "Adds conventional comment shortcuts to the comment editor.",
  "version": "2.1.0",
  "content_scripts": [
    {
      "matches": [
        "*://*/**/*/pull-requests/*"
      ],
      "css": [
        "src/style.css"
      ],
      "js": [
        "src/index.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://bitbucket.org/**/*/pull-requests/*"
      ],
      "css": [
        "src/style.css"
      ],
      "js": [
        "src/index.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "*://*/*"
      ],
      "resources": [
        "src/*"
      ]
    }
  ],
  "action": {
    "default_popup": "src/popup/index.html",
    "default_icon": {
      "16": "icons/16.png",
      "48": "icons/48.png",
      "128": "icons/128.png"
    }
  },
  "permissions": [
    "clipboardRead",
    "clipboardWrite",
    "storage"
  ],
  "host_permissions": [
    "*://*/*"
  ]
}