Bitbucket Conventional Comments

Adds conventional comment shortcuts to the comment editor.

Wat is Bitbucket Conventional Comments?

Bitbucket Conventional Comments is een Chrome-extensie ontwikkeld door Sam Martin, en de belangrijkste functie is "Adds conventional comment shortcuts to the comment editor.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Bitbucket Conventional Comments

Download Bitbucket Conventional Comments-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Bitbucket Conventional Comments Bitbucket Conventional Comments
ID ahbhljoncimmieljhlkkeifohkigiefa
Officiële URL https://chromewebstore.google.com/detail/bitbucket-conventional-co/ahbhljoncimmieljhlkkeifohkigiefa
Beschrijving Adds conventional comment shortcuts to the comment editor.
Bestandsgrootte 293 KB
Aantal Installaties 148
Huidige Versie 2.1.0
Laatst Bijgewerkt 2023-09-01
Publicatiedatum 2021-07-14
Beoordeling 4.33/5 Totaal 3 Beoordelingen
Ontwikkelaar Sam Martin
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/smartinio/bitbucket-conventional-comments
Ondersteunde Talen 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": [
        "*:\/\/*\/*"
    ]
}