Bitbucket Conventional Comments

Adds conventional comment shortcuts to the comment editor.

Apa itu Bitbucket Conventional Comments?

Bitbucket Conventional Comments adalah ekstensi Chrome yang dikembangkan oleh Sam Martin, dan fitur utamanya adalah "Adds conventional comment shortcuts to the comment editor.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Bitbucket Conventional Comments

Unduh file ekstensi Bitbucket Conventional Comments dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Bitbucket Conventional Comments Bitbucket Conventional Comments
ID ahbhljoncimmieljhlkkeifohkigiefa
URL Resmi https://chromewebstore.google.com/detail/bitbucket-conventional-co/ahbhljoncimmieljhlkkeifohkigiefa
Deskripsi Adds conventional comment shortcuts to the comment editor.
Ukuran File 293 KB
Jumlah Instalasi 148
Versi Saat Ini 2.1.0
Terakhir Diperbarui 2023-09-01
Tanggal Publikasi 2021-07-14
Penilaian 4.33/5 Total 3 Penilaian
Pengembang Sam Martin
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/smartinio/bitbucket-conventional-comments
Bahasa yang Didukung 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": [
        "*:\/\/*\/*"
    ]
}