Trello Prime

Use Trello with some cool features.

Trello Prime là gì?

Trello Prime là một tiện ích mở rộng Chrome được phát triển bởi thearchitgarg, và tính năng chính của nó là "Use Trello with some cool features.".

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

screenshot
screenshot
screenshot
screenshot

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

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

                        - You will be able to see the card ID when a card is open (HOT FEATURE)
- Change your custom background color w/o changing color for all the teammates.
- You can see the trello card short id on every card (which you can use to refrence cards in standup meetings or to name your git branches)
- Now you will be able to see the label text on each card.
- Turn ON/OFF any of these features anytime. 
- Cool UI & lightweight plugin(screenshots attached)
- Results in increased productivity and will help to name your branches.

More cool features coming soon so add this to your chrome so that it will be automatically updated whenever a new version will arrive. Write in the comments if you would like to have any new feature or you face any issue, I will try to respond as quickly as possible.                    

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

Tên Trello Prime Trello Prime
ID mkphpfbogfpojbbmbdhfcboleippkffh
URL Chính Thức https://chromewebstore.google.com/detail/trello-prime/mkphpfbogfpojbbmbdhfcboleippkffh
Mô tả Use Trello with some cool features.
Kích Thước Tệp 149 KB
Số Lần Cài Đặt 150
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2019-08-18
Ngày Phát Hành 2019-08-18
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển thearchitgarg
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trello Prime",
    "short_name": "Trel-Prime",
    "description": "Use Trello with some cool features.",
    "version": "1.0.2",
    "browser_action": {
        "default_icon": "assets\/logo.png",
        "default_popup": "popup.html",
        "default_title": "Trello Prime"
    },
    "icons": {
        "128": "assets\/logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.trello.com\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "scripts\/content_script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "*:\/\/trello.com\/*",
        "tabs",
        "storage"
    ]
}