TFS 2015 kanban buddy (beta)
A tool to make Team Foundation Server Kanban board (Backlog Board) a better information radiator. It was built for earlier versions…
什麼是TFS 2015 kanban buddy (beta)?
TFS 2015 kanban buddy (beta)是由Magnus Siverbrant開發的Chrome擴展程式,該擴展的主要功能是“A tool to make Team Foundation Server Kanban board (Backlog Board) a better information radiator. It was built for earlier versions…”。
擴展截圖
下載TFS 2015 kanban buddy (beta)擴展crx文件
下載TFS 2015 kanban buddy (beta)擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
A tool to make Team Foundation Server Kanban board (Backlog Board) a better information radiator. It was built for earlier versions of tfs and where visual management support was extreemly poor and has been ported to 2015 to give some extra features that works together with and enhances the native tfs functionality features 1: Allowing you to map prefixes in your PBI naming to decide what color the card should have. You have 11 colors to choose from and use what ever way makes sense for you. You can also color the cards on the taskboard the same way . This functionality can be used together with TFS 2015:s native card coloring schemes to give brighter colors and maximum flexibility Example Expedite = ! Blocked = * Blue = CR Yellow = AT ................ 2: it allows for items on the board to be handled as related. If two pbi:s have the same sequence of letters started by a # (Examples #123 or #COD ) hoovering one off the items will fade all unrelated items making it really easy to see where in the flow the related work is currently. 3: Allowing you to add your personal links to the board. In my case i use this to direct link to Definition of done the task board and to our project Wiki you can add 10 links 4:Collect data of how the board looks at every reload and provide reports based on this data. -Snapshot of board right now with days in lane and days on board for all items -Report with data on when a card was in lanes and when it was bloocked. -Report showing how long a card has been in lanes and total time blocked. All this data can be exported as json and the different reports could be exported as csv as well. (This functionality only collect data that has been shown in your browser so the more you work with the board and reload it the better the data will be) 5:Filters By ending a PBI title with a |example you have created a "example" filter it is possible to filter on all filters that is available on the board at the moment. use filters for whatever makes sence for you. 6: CFD The collected data can be used to generate a CFD diagram with the ability filter out data in certain lanes this data can be filtered and exported 8: Cycletime analysis based on the collected data 9: Show days in lane/days blocked on card on hovering (if card ID:s are visible on cards) Has been developed for TFS 2013 and ported to work with TFS 2015 a version for TFS 2012 and 2013 is available here https://chrome.google.com/webstore/detail/tfs-2012-kanban-buddy/gknjhfdgggndldnkpofgfcadgjpjdbff (not actively developed) read more here https://medium.com/@siverbrant/how-we-tweaked-team-foundation-server-2012-into-a-decent-kanban-tool-5041d2643649 code available here https://github.com/paddelkraft/TfsKanbanBuddy
擴展基本資訊
名稱 | |
ID | fhoeckfnaafljohmomghodilelnjlhdg |
官方網址 | https://chrome.google.com/webstore/detail/tfs-2015-kanban-buddy-bet/fhoeckfnaafljohmomghodilelnjlhdg |
簡介 | A tool to make Team Foundation Server Kanban board (Backlog Board) a better information radiator. It was built for earlier versions… |
檔案大小 | 886 KB |
安裝次數 | 60 |
目前版本 | 0.7.36 |
更新時間 | 2016-12-07 |
上架時間 | 2016-12-07 |
開發者 | Magnus Siverbrant |
電子郵箱 | [email protected] |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TFS 2015 kanban buddy (beta)", "version": "0.7.36", "manifest_version": 2, "browser_action": { "default_title": "TFS kanban board enhancer", "default_icon": "icons\/icon32.png", "default_popup": "pages\/popup.html" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "32": "icons\/icon32.png", "128": "icons\/icon128.png" }, "permissions": [ "unlimitedStorage" ], "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/ssl.google-analytics.com; object-src 'self'", "background": { "scripts": [ "\/utils_js\/jquery-2.1.1.min.js", "\/utils_js\/lodash.js", "utils_js\/util.js", "utils_js\/boarddata.js", "background\/backgroundUtil.js", "background\/apiSnapshot.js", "background\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*\/*\/_backlogs\/board*", "https:\/\/*\/*\/*\/_backlogs\/board*", "http:\/\/*\/*\/*\/_boards*" ], "js": [ "utils_js\/util.js", "utils_js\/jquery-2.1.1.min.js", "utils_js\/boarddata.js", "pages\/flowdata.js", "content_scripts\/board.js", "content_scripts\/tfsBoardInit.js", "content_scripts\/projectUrl.js", "content_scripts\/daysinlane.js" ] }, { "matches": [ "http:\/\/*\/*\/*\/_backlogs\/TaskBoard*", "https:\/\/*\/*\/*\/_backlogs\/TaskBoard*", "http:\/\/*\/*\/*\/_backlogs\/taskboard*", "https:\/\/*\/*\/*\/_backlogs\/taskboard*" ], "js": [ "utils_js\/util.js", "utils_js\/jquery-2.1.1.min.js", "content_scripts\/tfsBoardInit.js", "content_scripts\/taskboard.js", "content_scripts\/projectUrl.js" ] }, { "matches": [ "http:\/\/*\/*\/*\/_backlogs\/board*", "https:\/\/*\/*\/*\/_backlogs\/board*" ], "js": [ "\/utils_js\/lodash.js", "utils_js\/util.js", "utils_js\/jquery-2.1.1.min.js", "content_scripts\/snapshot.js" ] }, { "matches": [ "http:\/\/*\/*\/*", "https:\/\/*\/*\/*" ], "js": [ "content_scripts\/TfsLinksInit.js", "content_scripts\/boardlinks.js" ] } ] } |