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」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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" } } |