List Highlighter for Trello

Change list background colours

List Highlighter for Trello란 무엇입니까?

List Highlighter for Trello은(는) https://beingmrkenny.co.uk에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Change list background colours"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

List Highlighter for Trello 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        List Highlighter helps you focus on what you're working on.

Trello boards can fill up with multiple lists pretty quickly. List Highlighter helps you make the important ones stand out by allowing you to change the list background colour.

For more information, visit the List Highlighter homepage.                    

확장 프로그램 기본 정보

이름 List Highlighter for Trello List Highlighter for Trello
ID haljojofdmnhcjenglgbejijfppbhmnn
공식 URL https://chromewebstore.google.com/detail/list-highlighter-for-trel/haljojofdmnhcjenglgbejijfppbhmnn
설명 Change list background colours
파일 크기 114 KB
설치 횟수 12,854
현재 버전 5.0.2
최근 업데이트 2024-01-30
출시 날짜 2020-05-25
평점 4.25/5 총 48 개의 평점
개발자 https://beingmrkenny.co.uk
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://beingmrkenny.co.uk/web-extensions/list-highlighter-trello
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "List Highlighter for Trello",
    "description": "Change list background colours",
    "version": "5.0.2",
    "author": "Mark Kenny",
    "homepage_url": "https:\/\/beingmrkenny.co.uk\/web-extensions\/list-highlighter-trello",
    "options_ui": {
        "page": "options-page\/index.html",
        "open_in_tab": true
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "js\/third\/autosize.js",
                "js\/classes\/Global.js",
                "js\/classes\/Color.js",
                "js\/classes\/StorageLegacy.js",
                "js\/classes\/Options.js",
                "js\/classes\/Rules.js",
                "js\/classes\/DataStorage.js",
                "js\/front-end\/InsertedCSS.js",
                "js\/front-end\/RulesMatcher.js",
                "js\/front-end\/TrelloPage.js",
                "js\/front-end\/System.js",
                "js\/functions.js",
                "js\/init.js"
            ],
            "matches": [
                "*:\/\/trello.com\/*"
            ],
            "run_at": "document_start"
        },
        {
            "css": [
                "css\/style.css"
            ],
            "matches": [
                "*:\/\/trello.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "img\/192.png",
        "32": "img\/192.png",
        "48": "img\/192.png",
        "64": "img\/192.png",
        "256": "img\/256.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "img\/buttonIcon.png",
                "img\/buttonIconOff.png",
                "img\/expand.svg"
            ],
            "matches": []
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "action": {
        "default_title": "List Highlighter",
        "default_popup": "popup.html",
        "default_icon": "img\/buttonIcon.png"
    }
}