Trello Views

Tailored views of your boards!

Trello Views là gì?

Trello Views là một tiện ích mở rộng Chrome được phát triển bởi BiteSite Inc., và tính năng chính của nó là "Tailored views of your boards!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Trello Views

Tải xuống các tệp mở rộng Trello Views 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

                        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]!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Trello Views Trello Views
ID ljfoaeaaojcefkmljglbbphcoclnodnm
URL Chính Thức https://chromewebstore.google.com/detail/trello-views/ljfoaeaaojcefkmljglbbphcoclnodnm
Mô tả Tailored views of your boards!
Kích Thước Tệp 9.48 KB
Số Lần Cài Đặt 60
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2021-06-12
Ngày Phát Hành 2021-06-12
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển BiteSite Inc.
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}