Bitbucket Conventional Comments

Adds conventional comment shortcuts to the comment editor.

什麼是Bitbucket Conventional Comments?

Bitbucket Conventional Comments是由Sam Martin開發的Chrome擴展程式,該擴展的主要功能是“Adds conventional comment shortcuts to the comment editor.”。

擴展截圖

screenshot

下載Bitbucket Conventional Comments擴展crx文件

下載Bitbucket Conventional Comments擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 Bitbucket Conventional Comments Bitbucket Conventional Comments
ID ahbhljoncimmieljhlkkeifohkigiefa
官方網址 https://chromewebstore.google.com/detail/bitbucket-conventional-co/ahbhljoncimmieljhlkkeifohkigiefa
簡介 Adds conventional comment shortcuts to the comment editor.
檔案大小 293 KB
安裝次數 148
目前版本 2.1.0
更新時間 2023-09-01
上架時間 2021-07-14
評分 4.33/5 共 3 次評分
開發者 Sam Martin
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/smartinio/bitbucket-conventional-comments
支援的語言 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": [
        "*:\/\/*\/*"
    ]
}