List Highlighter for Trello
Change list background colours
List Highlighter for Trelloคืออะไร?
List Highlighter for Trello เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://beingmrkenny.co.uk และคุณลักษณะหลักของมันคือ "Change list background colours"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย List Highlighter for Trello
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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" } } |