Trello Views
Tailored views of your boards!
Trello Viewsคืออะไร?
Trello Views เป็นส่วนขยายของ Chrome ที่พัฒนาโดย BiteSite Inc. และคุณลักษณะหลักของมันคือ "Tailored views of your boards!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Trello Views
ดาวน์โหลดไฟล์ส่วนขยาย Trello Views ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Trello Views is a simple extension that allows to to easily show/hide columns on Trello boards. It's ideal for boards that have large number of columns catering to many different roles. For example, you might have a board that Product Managers, Developers, and Designers use. Yet each role only cares about certain columns. You could easily create a "PM" view, a "Dev" view, and a "Design" view each with their own set of columns. Instructions: 1. Click on the Extension in your Browser 2. Click "Configure Views" 3. Add views by specifying their name, and then a comma-separated list of column names that you want active for that view. 4. Click "Save". 5. Now launch a Trello board, and then click on the Extension and select your view. Send your feedback to [email protected]!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Trello Views |
ID | ljfoaeaaojcefkmljglbbphcoclnodnm |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/trello-views/ljfoaeaaojcefkmljglbbphcoclnodnm |
คำอธิบาย | Tailored views of your boards! |
ขนาดไฟล์ | 9.48 KB |
จำนวนการติดตั้ง | 60 |
เวอร์ชันปัจจุบัน | 0.0.1 |
อัปเดตครั้งล่าสุด | 2021-06-12 |
วันที่เผยแพร่ | 2021-06-12 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | BiteSite Inc. |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Trello Views", "description": "Tailored views of your boards!", "version": "0.0.1", "manifest_version": 3, "options_page": "options.html", "permissions": [ "storage" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/icon16.png", "32": "\/images\/icon32.png", "48": "\/images\/icon48.png", "128": "\/images\/icon128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/trello.com\/*" ], "js": [ "contentScript.js" ] } ], "icons": { "16": "\/images\/icon16.png", "32": "\/images\/icon32.png", "48": "\/images\/icon48.png", "128": "\/images\/icon128.png" } } |