Full screen card view for Trello

Makes the card and edit window in Trello.com full screen

Full screen card view for Trello là gì?

Full screen card view for Trello là một tiện ích mở rộng Chrome được phát triển bởi https://justin.kelly.org.au, và tính năng chính của nó là "Makes the card and edit window in Trello.com full screen".

Ả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 Full screen card view for Trello

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

                        Converts the small Trello card view/edit windows to be full screen height and width.

If you use trello.com alot like myself, and add lots (pages) of information in the card description section you’ll find the small card window a real pain to use.

To fix this I whipped up a quick chrome extension to make the card edit window full screen, 

More info:
* http://blog.justin.kelly.org.au/trello-big-edit/

Code on GitHub:
* https://github.com/justinkelly/trello_big_edit                    

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

Tên Full screen card view for Trello Full screen card view for Trello
ID iakcnnmjbdoemkjecojadhpinebnkipm
URL Chính Thức https://chromewebstore.google.com/detail/full-screen-card-view-for/iakcnnmjbdoemkjecojadhpinebnkipm
Mô tả Makes the card and edit window in Trello.com full screen
Kích Thước Tệp 5.92 KB
Số Lần Cài Đặt 1,820
Phiên Bản Hiện Tại 3
Cập Nhật Lần Cuối 2013-08-09
Ngày Phát Hành 2013-08-08
Đánh Giá 4.38/5 Tổng số 16 Đánh Giá
Nhà Phát Triển https://justin.kelly.org.au
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/justinkelly/trello_big_edit
URL Trang Trợ Giúp https://github.com/justinkelly/trello_big_edit/issues
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Full screen card view for Trello",
    "version": "3",
    "manifest_version": 2,
    "description": "Makes the card and  edit window in Trello.com full screen",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/trello.com\/*",
                "https:\/\/trello.com\/*"
            ],
            "js": [
                "trello_big_edit.user.js"
            ]
        }
    ]
}