Bitbucket Conventional Comments
Adds conventional comment shortcuts to the comment editor.
¿Qué es Bitbucket Conventional Comments?
Bitbucket Conventional Comments es una extensión de Chrome desarrollada por Sam Martin, y su función principal es "Adds conventional comment shortcuts to the comment editor.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Bitbucket Conventional Comments
Descarga archivos de extensión Bitbucket Conventional Comments en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Save precious time typing out conventional comments with just the click of a button!
Información Básica de la Extensión
Nombre | Bitbucket Conventional Comments |
ID | ahbhljoncimmieljhlkkeifohkigiefa |
URL Oficial | https://chromewebstore.google.com/detail/bitbucket-conventional-co/ahbhljoncimmieljhlkkeifohkigiefa |
Descripción | Adds conventional comment shortcuts to the comment editor. |
Tamaño del Archivo | 293 KB |
Cantidad de Instalaciones | 148 |
Versión Actual | 2.1.0 |
Última Actualización | 2023-09-01 |
Fecha de Publicación | 2021-07-14 |
Calificación | 4.33/5 Total de 3 Calificaciones |
Desarrollador | Sam Martin |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/smartinio/bitbucket-conventional-comments |
Idiomas Soportados | 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": [ "*:\/\/*\/*" ] } |