Trello Points
Sums points for a Trello column when cards have associated points as labels
什么是Trello Points?
Trello Points是由nstetich开发的Chrome扩展程序,该扩展的主要功能是“Sums points for a Trello column when cards have associated points as labels”。
扩展截图
下载Trello Points扩展crx文件
下载Trello Points扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Sum Points in Trello If you assign points to cards using a label, this extension will sum all of the point labels by column for visible cards on your board. Note: I am not affiliated with Trello, but this is how my team uses Trello. If you use it this way, you may find this extension useful.
扩展基本信息
名称 | Trello Points |
ID | goigmjpaehddoikooikbblloogaijjpo |
官方URL | https://chromewebstore.google.com/detail/trello-points/goigmjpaehddoikooikbblloogaijjpo |
简介 | Sums points for a Trello column when cards have associated points as labels |
文件大小 | 15.17 KB |
安装次数 | 22 |
当前版本 | 0.0.10 |
更新时间 | 2016-03-10 |
上架时间 | 2016-03-10 |
评分 | 4.00/5 共3次评分 |
开发者 | nstetich |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "0.0.10", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "options_page": "options.html", "content_scripts": [ { "matches": [ "http:\/\/trello.com\/*", "https:\/\/trello.com\/*" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ] } |