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
拡張機能の基本情報
名前 | Money for Trello |
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" } |