Trello Grid Layout and Confetti Extension
This is a external Trello extension for Trello, that displays the cards in a grid layout and does a confetti when you finish a task.
Trello Grid Layout and Confetti Extension là gì?
Trello Grid Layout and Confetti Extension là một tiện ích mở rộng Chrome được phát triển bởi https://web3point.co, và tính năng chính của nó là "This is a external Trello extension for Trello, that displays the cards in a grid layout and does a confetti when you finish a task.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Trello Grid Layout and Confetti Extension
Tải xuống các tệp mở rộng Trello Grid Layout and Confetti Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
A lot of folks hate the long horizontal scrolling and a lot of vertical space is wasted by trello too. This extension displays your Trello cards in a grid fashion. Furthermore, if you move a task from a card to another card, it would do a confetti animation. The destination card(s) just have to include 'finish' (not case sensitive) in their title anywhere. Some valid card title examples: "[Finished]","Finished & Completed","Meowfinished","literallyanythingfiNishDed:D"
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Trello Grid Layout and Confetti Extension |
ID | miodejnpnefiklobgajiemkdlfhldggi |
URL Chính Thức | https://chromewebstore.google.com/detail/trello-grid-layout-and-co/miodejnpnefiklobgajiemkdlfhldggi |
Mô tả | This is a external Trello extension for Trello, that displays the cards in a grid layout and does a confetti when you finish a task. |
Kích Thước Tệp | 98.81 KB |
Số Lần Cài Đặt | 456 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2020-10-04 |
Ngày Phát Hành | 2020-10-04 |
Đánh Giá | 4.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | https://web3point.co |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://web3point.co |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Trello Grid Layout and Confetti Extension", "author": "Piyush Jha", "manifest_version": 2, "version": "1.1", "description": "This is a external Trello extension for Trello, that displays the cards in a grid layout and does a confetti when you finish a task.", "icons": { "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon48.png" }, "content_scripts": [ { "matches": [ "https:\/\/trello.com\/*" ], "run_at": "document_end", "js": [ "script.js" ], "css": [ "style.css" ] } ], "web_accessible_resources": [ "audio.mp3" ], "permissions": [ "tabs", "https:\/\/trello.com\/*" ] } |