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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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": [
        "*:\/\/*\/*"
    ]
}