Trello Priority
Labeling priority using Impact/Cost scores
Trello Priorityとは何ですか?
Trello Priorityはynunokawa.devによって開発されたChromeの拡張機能で、その主な機能は「Labeling priority using Impact/Cost scores」です。
拡張機能のスクリーンショット
Trello Priority拡張機能のCRXファイルをダウンロード
Trello Priority拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
It can automatically add a label of priority into cards using Impact/Cost scores. Getting Started 1. Add Trello Priority into your chrome 2. Create labels for Impact/Cost score (High Cost | Mid Cost | Low Cost | High Impact | Mid Impact | Low Impact) 3. Label each Impact/Cost score (e.g. [High Cost] [Mid Impact]) 4. Display priorities after clicking the "Update Priorities" button Notice - You should label one each Impact/Cost score - It does not display a priority on card without valid Impact/Cost scores - Priority hide if you replace a card into other lists (You can see it clicking the "Update Priorities" button)
拡張機能の基本情報
名前 | Trello Priority |
ID | cnkhgafbkcdclefdglbgdghohlomiofn |
公式URL | https://chromewebstore.google.com/detail/trello-priority/cnkhgafbkcdclefdglbgdghohlomiofn |
説明 | Labeling priority using Impact/Cost scores |
ファイルサイズ | 63.92 KB |
インストール数 | 268 |
現在のバージョン | 1.6 |
最終更新日 | 2019-06-13 |
公開日 | 2019-06-13 |
評価 | 4.25/5 合計 4 レビュー |
開発者 | ynunokawa.dev |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Trello Priority", "description": "Labeling priority using Impact\/Cost scores", "version": "1.6", "manifest_version": 2, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_popup": "matrix.html", "default_icon": "images\/icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/trello.com\/b\/*" ], "css": [ "css\/style.css" ], "js": [ "lib\/jquery.js", "js\/matrix.js" ] } ], "permissions": [ "https:\/\/trello.com\/b\/*" ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "background": { "scripts": [ "js\/analytics.js" ] } } |