Bitbucket Conventional Comments
Adds conventional comment shortcuts to the comment editor.
O que é Bitbucket Conventional Comments?
Bitbucket Conventional Comments é uma extensão do Chrome desenvolvida por Sam Martin, e sua principal característica é "Adds conventional comment shortcuts to the comment editor.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Bitbucket Conventional Comments
Baixe arquivos de extensão Bitbucket Conventional Comments no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Save precious time typing out conventional comments with just the click of a button!
Informações Básicas da Extensão
Nome | Bitbucket Conventional Comments |
ID | ahbhljoncimmieljhlkkeifohkigiefa |
URL Oficial | https://chromewebstore.google.com/detail/bitbucket-conventional-co/ahbhljoncimmieljhlkkeifohkigiefa |
Descrição | Adds conventional comment shortcuts to the comment editor. |
Tamanho do Arquivo | 293 KB |
Contagem de Instalações | 148 |
Versão Atual | 2.1.0 |
Última Atualização | 2023-09-01 |
Data de Publicação | 2021-07-14 |
Classificação | 4.33/5 Total de 3 Avaliações |
Desenvolvedor | Sam Martin |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/smartinio/bitbucket-conventional-comments |
Idiomas Suportados | 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": [ "*:\/\/*\/*" ] } |