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”。

扩展截图

screenshot

下载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 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
电子邮箱 [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"
            ]
        }
    ]
}