Better Task Names for JIRA

Suggests best practice task names inline in JIRA based on task type. Better names, better team performance.

Что такое Better Task Names for JIRA?

Better Task Names for JIRA - это расширение Chrome, разработанное https://stratejos.ai, и его основная функция - "Suggests best practice task names inline in JIRA based on task type. Better names, better team performance.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Better Task Names for JIRA

Скачайте файлы расширений Better Task Names for JIRA в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Better Task Names for JIRA Better Task Names for JIRA
ID ojdelmehgjmlbdkikafcbldldfipdlpm
Официальный URL https://chromewebstore.google.com/detail/better-task-names-for-jir/ojdelmehgjmlbdkikafcbldldfipdlpm
Описание Suggests best practice task names inline in JIRA based on task type. Better names, better team performance.
Размер файла 22.31 KB
Количество установок 24
Текущая Версия 1.1.5
Последнее Обновление 2017-03-22
Дата публикации 2017-03-21
Рейтинг 3.50/5 Всего 2 оценок
Разработчик https://stratejos.ai
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://support.stratejos.ai
Поддерживаемые языки 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'"
}