Red Labels for Pivotal Tracker

Want to see which Pivotal Tracker stories you can work on? Turn any "blocked" or "needs " stories red so they stand out!

Red Labels for Pivotal Tracker란 무엇입니까?

Red Labels for Pivotal Tracker은(는) Mike Kenyon에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Want to see which Pivotal Tracker stories you can work on? Turn any "blocked" or "needs " stories red so they stand out!"입니다.

확장 프로그램 스크린샷

screenshot

Red Labels for Pivotal Tracker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Add some color to the Pivotal Tracker labels that slow down development.

Any stories with a label of "blocked" or "needs " will be an angry red. It makes it easy for developers, product managers and designers to see what can and cannot be worked on.

My teams often use "needs assets" or "needs design" to signal our product designer or "needs detail" to alert our product manager that their attention is required.

Works anywhere without customization needed! You can onboard someone to your team easily. You can install this on a new computer. You can set up any number of Pivotal Tracker projects. Red Labels for Pivotal Trackers just works.                    

확장 프로그램 기본 정보

이름 Red Labels for Pivotal Tracker Red Labels for Pivotal Tracker
ID agijkohaieagbidlmjjlajhlkpfoegao
공식 URL https://chromewebstore.google.com/detail/red-labels-for-pivotal-tr/agijkohaieagbidlmjjlajhlkpfoegao
설명 Want to see which Pivotal Tracker stories you can work on? Turn any "blocked" or "needs " stories red so they stand out!
파일 크기 14.35 KB
설치 횟수 802
현재 버전 1.3.1
최근 업데이트 2020-02-29
출시 날짜 2020-02-29
평점 4.80/5 총 15 개의 평점
개발자 Mike Kenyon
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/michaelabon/red-labels-for-pivotal-tracker
도움말 페이지 URL https://github.com/michaelabon/red-labels-for-pivotal-tracker/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Red Labels for Pivotal Tracker",
    "version": "1.3.1",
    "manifest_version": 2,
    "author": "Mike Kenyon",
    "description": "Want to see which Pivotal Tracker stories you can work on? Turn any \"blocked\" or \"needs \" stories red so they stand out!",
    "homepage_url": "https:\/\/github.com\/mkenyon\/red-labels-for-pivotal-tracker",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "http:\/\/www.pivotaltracker.com\/*",
        "https:\/\/www.pivotaltracker.com\/*"
    ],
    "short_name": "Red Labels",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.pivotaltracker.com\/*",
                "https:\/\/www.pivotaltracker.com\/*"
            ],
            "js": [
                "src\/inject\/isLabelEligible.js",
                "src\/inject\/inject.js"
            ],
            "css": [
                "css\/inject\/inject.css"
            ]
        }
    ]
}