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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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'"
}