Trello minimal UI toggle
Hide unused elements from Trello board
Trello minimal UI toggleคืออะไร?
Trello minimal UI toggle เป็นส่วนขยายของ Chrome ที่พัฒนาโดย terrylidev และคุณลักษณะหลักของมันคือ "Hide unused elements from Trello board"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Trello minimal UI toggle
ดาวน์โหลดไฟล์ส่วนขยาย Trello minimal UI toggle ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension allows you to have a clean Trello board by hiding unused elements, buttons and functions.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Trello minimal UI toggle |
ID | higifdcpoicalcpgmbohdohmcgamabfn |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/trello-minimal-ui-toggle/higifdcpoicalcpgmbohdohmcgamabfn |
คำอธิบาย | Hide unused elements from Trello board |
ขนาดไฟล์ | 232 KB |
จำนวนการติดตั้ง | 40 |
เวอร์ชันปัจจุบัน | 1.0.0 |
อัปเดตครั้งล่าสุด | 2020-06-08 |
วันที่เผยแพร่ | 2020-06-07 |
คะแนน | 4.67/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | terrylidev |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Trello minimal UI toggle", "version": "1.0.0", "description": "Hide unused elements from Trello board", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_popup": "popup.html", "default_icon": "icon128.png" }, "content_scripts": [ { "js": [ "content.js" ], "run_at": "document_idle", "matches": [ "https:\/\/trello.com\/*" ] } ], "permissions": [ "storage" ] } |