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文件

下載List Highlighter for Trello擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}