Trello minimal UI toggle
Hide unused elements from Trello board
Trello minimal UI toggle là gì?
Trello minimal UI toggle là một tiện ích mở rộng Chrome được phát triển bởi terrylidev, và tính năng chính của nó là "Hide unused elements from Trello board".
Ả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 minimal UI toggle
Tải xuống các tệp mở rộng Trello minimal UI toggle 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
This extension allows you to have a clean Trello board by hiding unused elements, buttons and functions.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Trello minimal UI toggle |
ID | higifdcpoicalcpgmbohdohmcgamabfn |
URL Chính Thức | https://chromewebstore.google.com/detail/trello-minimal-ui-toggle/higifdcpoicalcpgmbohdohmcgamabfn |
Mô tả | Hide unused elements from Trello board |
Kích Thước Tệp | 232 KB |
Số Lần Cài Đặt | 40 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2020-06-08 |
Ngày Phát Hành | 2020-06-07 |
Đánh Giá | 4.67/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | terrylidev |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |