Bitbucket Conventional Comments
Adds conventional comment shortcuts to the comment editor.
Cos'è Bitbucket Conventional Comments?
Bitbucket Conventional Comments è un'estensione di Chrome sviluppata da Sam Martin, e la sua funzione principale è "Adds conventional comment shortcuts to the comment editor.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Bitbucket Conventional Comments
Scarica i file di estensione Bitbucket Conventional Comments in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Save precious time typing out conventional comments with just the click of a button!
Informazioni di Base sull'Estensione
Nome | Bitbucket Conventional Comments |
ID | ahbhljoncimmieljhlkkeifohkigiefa |
URL Ufficiale | https://chromewebstore.google.com/detail/bitbucket-conventional-co/ahbhljoncimmieljhlkkeifohkigiefa |
Descrizione | Adds conventional comment shortcuts to the comment editor. |
Dimensione del File | 293 KB |
Conteggio Installazioni | 148 |
Versione Corrente | 2.1.0 |
Ultimo Aggiornamento | 2023-09-01 |
Data di Pubblicazione | 2021-07-14 |
Valutazione | 4.33/5 Totale 3 Valutazioni |
Sviluppatore | Sam Martin |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/smartinio/bitbucket-conventional-comments |
Lingue Supportate | 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": [ "*:\/\/*\/*" ] } |