Bitbucket Conventional Comments

Adds conventional comment shortcuts to the comment editor.

What is Bitbucket Conventional Comments?

Bitbucket Conventional Comments is a Chrome extension developed by Sam Martin, and its main feature is "Adds conventional comment shortcuts to the comment editor.".

Extension Screenshots

screenshot

Download Bitbucket Conventional Comments Extension CRX File

Download Bitbucket Conventional Comments extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Save precious time typing out conventional comments with just the click of a button!                    

Extension Basic Information

Name Bitbucket Conventional Comments Bitbucket Conventional Comments
ID ahbhljoncimmieljhlkkeifohkigiefa
Official URL https://chromewebstore.google.com/detail/bitbucket-conventional-co/ahbhljoncimmieljhlkkeifohkigiefa
Description Adds conventional comment shortcuts to the comment editor.
File Size 293 KB
Installation Count 148
Current Version 2.1.0
Last Updated 2023-09-01
Publish Date 2021-07-14
Rating 4.33/5 Total 3 Ratings
Developer Sam Martin
Email [email protected]
Payment Type free
Extension Website https://github.com/smartinio/bitbucket-conventional-comments
Supported Languages en-US
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": [
        "*:\/\/*\/*"
    ]
}