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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}