Bitbucket Conventional Comments

Adds conventional comment shortcuts to the comment editor.

Qu'est-ce que Bitbucket Conventional Comments ?

Bitbucket Conventional Comments est une extension Chrome développée par Sam Martin, et sa fonction principale est "Adds conventional comment shortcuts to the comment editor.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Bitbucket Conventional Comments

Téléchargez les fichiers d'extension Bitbucket Conventional Comments au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Bitbucket Conventional Comments Bitbucket Conventional Comments
ID ahbhljoncimmieljhlkkeifohkigiefa
URL Officiel https://chromewebstore.google.com/detail/bitbucket-conventional-co/ahbhljoncimmieljhlkkeifohkigiefa
Description Adds conventional comment shortcuts to the comment editor.
Taille du Fichier 293 KB
Nombre d'Installations 148
Version Actuelle 2.1.0
Dernière Mise à Jour 2023-09-01
Date de Publication 2021-07-14
Évaluation 4.33/5 Total 3 Évaluations
Développeur Sam Martin
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/smartinio/bitbucket-conventional-comments
Langues Prises en Charge 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": [
        "*:\/\/*\/*"
    ]
}