Money for Trello
This extension adds a cost for each card in trello
什么是Money for Trello?
Money for Trello是由Beinno开发的Chrome扩展程序,该扩展的主要功能是“This extension adds a cost for each card in trello”。
扩展截图
下载Money for Trello扩展crx文件
下载Money for Trello扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension is very usefull to know every card cost for Trello.
It's based on scrum points. every card should have approximate estimate in it's title like an example:
(2) Testing title
Cost for cards like the above example are determined based on card estimate which is 2 for the above example.
Point cost can be determined via extension options page 扩展基本信息
| 名称 | |
| ID | acfcndamepdchedecnjanbdhbmhijchd |
| 官方URL | https://chromewebstore.google.com/detail/money-for-trello/acfcndamepdchedecnjanbdhbmhijchd |
| 简介 | This extension adds a cost for each card in trello |
| 文件大小 | 3.78 MB |
| 安装次数 | 71 |
| 当前版本 | 1.9 |
| 更新时间 | 2016-11-12 |
| 上架时间 | 2016-11-12 |
| 评分 | 5.00/5 共4次评分 |
| 开发者 | Beinno |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Money for Trello",
"description": "This extension adds a cost for each card in trello",
"version": "1.9",
"web_accessible_resources": [
"css\/*",
"img\/*.png"
],
"icons": {
"16": "icons\/16.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"http:\/\/www.trello.com\/*",
"https:\/\/www.trello.com\/*",
"http:\/\/trello.com\/*",
"https:\/\/trello.com\/*",
"https:\/\/*.cloudfront.net\/*",
"file:\/\/\/*\/*.*"
],
"js": [
"js\/libs\/jquery\/dist\/jquery.min.js",
"js\/main.js"
],
"css": [
"css\/main.css"
],
"run_at": "document_end"
}
],
"background": {
"page": "background.html",
"persistent": true
},
"options_page": "options.html"
} | |