Visual Enhancements for Trello
Background colours and headers for Trello cards
Visual Enhancements for Trelloとは何ですか?
Visual Enhancements for TrelloはSam Lanningによって開発されたChromeの拡張機能で、その主な機能は「Background colours and headers for Trello cards」です。
拡張機能のスクリーンショット
Visual Enhancements for Trello拡張機能のCRXファイルをダウンロード
Visual Enhancements for Trello拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This is an Open Source project, and the source code can be found on GitHub: https://github.com/samlanning/trello-enhancements Customize the look of your Trello boards by enabling card background colors (taken from labels) and header cards. You can try out this extension on the example board: https://trello.com/b/S3asr5Or/visual-enhancements-demo ## Instructions ### Headers: To display headers, add "--" at the start and end of the text for your card. If this card has a label, then the color of the first label will be used as the color for the header text ### Background Colors If this card has a label, then the background color will be based on the color of the first label. If you only have one label, then that label will be hidden, otherwise you'll still be able to see all the labels displayed.
拡張機能の基本情報
名前 | Visual Enhancements for Trello |
ID | ellpgcibalbljpeklapejdlflnfpiiok |
公式URL | https://chromewebstore.google.com/detail/visual-enhancements-for-t/ellpgcibalbljpeklapejdlflnfpiiok |
説明 | Background colours and headers for Trello cards |
ファイルサイズ | 14.22 KB |
インストール数 | 618 |
現在のバージョン | 1.0.0.2 |
最終更新日 | 2018-12-01 |
公開日 | 2018-11-30 |
評価 | 5.00/5 合計 3 レビュー |
開発者 | Sam Lanning |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/samlanning/trello-enhancements |
ヘルプページのURL | https://github.com/samlanning/trello-enhancements/issues |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Visual Enhancements for Trello", "version": "1.0.0.2", "description": "Background colours and headers for Trello cards", "manifest_version": 2, "icons": { "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/trello.com\/*" ], "css": [ "content.css" ], "js": [ "contentScript.js" ] } ] } |