Better Task Names for JIRA
Suggests best practice task names inline in JIRA based on task type. Better names, better team performance.
¿Qué es Better Task Names for JIRA?
Better Task Names for JIRA es una extensión de Chrome desarrollada por https://stratejos.ai, y su función principal es "Suggests best practice task names inline in JIRA based on task type. Better names, better team performance.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Better Task Names for JIRA
Descarga archivos de extensión Better Task Names for JIRA 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
Suggests best practice task names inline in JIRA. So, when you are creating a task or editing a task's title in JIRA, this extension enables a little suggestion to show up, suggesting the best format for that type of task. Getting better names for your tasks, bugs, issues and user stories will mean better team performance due to better shared understanding. Based on our analysis of thousands of tasks and years of experience in software teams we've reached a hypothesis on what the best formats for task names are. Currently this extension only supports JIRA but if we receive enough support we'll enable it for other tools like Trello, Asana and basecamp. Produced by stratejos as part of our mission to evolve the state of software teams to be more data-driven and AI assisted.
Información Básica de la Extensión
Nombre | Better Task Names for JIRA |
ID | ojdelmehgjmlbdkikafcbldldfipdlpm |
URL Oficial | https://chromewebstore.google.com/detail/better-task-names-for-jir/ojdelmehgjmlbdkikafcbldldfipdlpm |
Descripción | Suggests best practice task names inline in JIRA based on task type. Better names, better team performance. |
Tamaño del Archivo | 22.31 KB |
Cantidad de Instalaciones | 24 |
Versión Actual | 1.1.5 |
Última Actualización | 2017-03-22 |
Fecha de Publicación | 2017-03-21 |
Calificación | 3.50/5 Total de 2 Calificaciones |
Desarrollador | https://stratejos.ai |
Correo electrónico | [email protected] |
Tipo de Pago | free |
URL de la Página de Ayuda | https://support.stratejos.ai |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Better Task Names for JIRA", "short_name": "Better Task Names", "description": "Suggests best practice task names inline in JIRA based on task type. Better names, better team performance.", "version": "1.1.5", "icons": { "16": "assets\/images\/icon16.png", "32": "assets\/images\/icon32.png", "48": "assets\/images\/icon48.png", "128": "assets\/images\/icon128.png" }, "permissions": [ "storage" ], "background": { "scripts": [ "src\/suggestionCounter.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*.atlassian.net\/*" ], "js": [ "src\/jira\/issue_summary_input_helper.js" ] } ], "web_accessible_resources": [ "assets\/images\/*" ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |