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.”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Story Tools for Pivotal Tracker扩展crx文件

下载Story Tools for Pivotal Tracker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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 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\/"
    ]
}