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是由https://stratejos.ai開發的Chrome擴展程式,該擴展的主要功能是“Suggests best practice task names inline in JIRA based on task type. Better names, better team performance.”。

擴展截圖

screenshot
screenshot

下載Better Task Names for JIRA擴展crx文件

下載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
官方網址 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'"
}