Bitbucket Conventional Comments

Adds conventional comment shortcuts to the comment editor.

Bitbucket Conventional Commentsคืออะไร?

Bitbucket Conventional Comments เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sam Martin และคุณลักษณะหลักของมันคือ "Adds conventional comment shortcuts to the comment editor."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bitbucket Conventional Comments

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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": [
        "*:\/\/*\/*"
    ]
}