Story Tools for Pivotal Tracker
Adds the ability to split stories into epics and duplicate stories to Pivotal Tracker.
Story Tools for Pivotal Tracker란 무엇입니까?
Story Tools for Pivotal Tracker은(는) RocketRamp에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds the ability to split stories into epics and duplicate stories to Pivotal Tracker."입니다.
확장 프로그램 스크린샷
Story Tools for Pivotal Tracker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Converts stories with tasks into epics with stories. - If “Feature Creeps” keep loading up your stories with tasks you can fight back by converting the stories with tasks into epics with individual stories. Any tasks already checked off will be treated as finished stories when converted. - If you are brainstorming around crucial dates or events you can make them the name of a story and load up the stories with tasks before converting them to epics with stories. - If stories are too vague or nonfunctional but you don’t want to lose them, simply add in the specific tasks and make the original an epic with the tasks as stories. Clones stories. - Keep a list of your favorite best practices and feature sets to clone whenever you like, saving time in your brainstorming sessions. - You will keep the full description along with the name, type, labels, tasks, and even task status. Even clone Epics. - Full clusters of activity can be saved as stories with tasks, then duplicated and converted to Epics. That’s as good as it gets since Pivotal won’t let users select epics. Plays nice. - We’ve tested. Does not slow down your web experience or store personal information. Update 1.0: Now much less confusing. no token copy-pasting required. Requires that the "Create New Token" button in your Pivotal Tracker Profile be clicked. Updates: 1.1: fixed a bug involving leftover token if the token is refreshed. 1.2: minor bugfixes. 1.3: more minor bugfixes 1.4: Handled a bug likely caused by Pivotal Tracker's new API in beta. 1.5: Name changed from "Pivotal Tracker+" and icon changed so that the app meets the standard of Pivotal Tracker's Third Party Application page. 1.6: Fixed bug that made the "Make Stories into Epics" function not work if there was no tasks under the story. The error was a remnant of the code that existed before development of epics was possible to prevent the accidental deletion of a story, but that "feature" is a bug now, so it was removed 1.7: Install much easier now. Tutorial not needed. Does not support attachments. Duplicate now runs on API v5 and is much faster. 1.8: Added support for other less used tabs for all functions. You can duplicate and make epics out of stories from the "done", "backlog", or "my work" sections in Pivotal. Additionally, fixes a bug that prevented duplication introduced by a recent change made to the backend interface of Pivotal. 1.9 Added support for PT's new UI. Unfortunately, dashboard internal support has been made very difficult, requiring a button next to the search bar. Also resolved a loading issue that slowed down use of Pivotal Tracker when large amounts of items were copied. Plans for future development: I intend to establish full hierarchies with epics; adding a story to an internal epic will include it as part of the epics containing it. It may even be possible to rearrange the hierarchies and shift around all the stories within those epics. However, I'm not sure if I'm going to make that within this application or a separate one, as it's beginning to stretch outside the scope of this ancient project.
확장 프로그램 기본 정보
이름 | Story Tools for Pivotal Tracker |
ID | iepeafpjnnbgjmnlidiplcobhifhaggc |
공식 URL | https://chromewebstore.google.com/detail/story-tools-for-pivotal-t/iepeafpjnnbgjmnlidiplcobhifhaggc |
설명 | Adds the ability to split stories into epics and duplicate stories to Pivotal Tracker. |
파일 크기 | 91.7 KB |
설치 횟수 | 111 |
현재 버전 | 1.9 |
최근 업데이트 | 2015-07-04 |
출시 날짜 | 2015-07-03 |
평점 | 3.60/5 총 5 개의 평점 |
개발자 | RocketRamp |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Story Tools for Pivotal Tracker", "version": "1.9", "description": "Adds the ability to split stories into epics and duplicate stories to Pivotal Tracker.", "content_scripts": [ { "matches": [ "https:\/\/www.pivotaltracker.com\/n\/projects\/*" ], "js": [ "jquery.js", "selectedComponent.user.js" ], "run_at": "document_idle" } ], "icons": { "128": "Icon.png" }, "browser_action": { "default_icon": "Icon.png", "default_popup": "popup.html", "default_title": "Click here!" }, "permissions": [ "https:\/\/www.pivotaltracker.com\/", "http:\/\/www.pivotaltracker.com\/" ] } |