Trello To-do Notes

Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: / Apr 30

Trello To-do Notes là gì?

Trello To-do Notes là một tiện ích mở rộng Chrome được phát triển bởi https://valerypopoff.ru/trello, và tính năng chính của nó là "Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: / Apr 30".

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

screenshot

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

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

                        How to use: open Trello cards in separate browser windows and click the extension icon

* Removes visual noise leaving only checklists. 
* Highlights urgent tasks if you provide deadlines like this: / Apr 30                    

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

Tên Trello To-do Notes Trello To-do Notes
ID agdeebidnlidokgnnkhiiccefldilcjp
URL Chính Thức https://chromewebstore.google.com/detail/trello-to-do-notes/agdeebidnlidokgnnkhiiccefldilcjp
Mô tả Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: / Apr 30
Kích Thước Tệp 109 KB
Số Lần Cài Đặt 1,099
Phiên Bản Hiện Tại 0.9.8
Cập Nhật Lần Cuối 2020-12-12
Ngày Phát Hành 2018-07-02
Đánh Giá 4.36/5 Tổng số 11 Đánh Giá
Nhà Phát Triển https://valerypopoff.ru/trello
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://valerypopoff.ru/trello
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trello To-do Notes",
    "description": "Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: \/ Apr 30",
    "version": "0.9.8",
    "permissions": [
        "http:\/\/trello.com\/*",
        "https:\/\/trello.com\/*"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Click to do the magic"
    },
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trello.com\/*"
            ],
            "js": [
                "jquery.js",
                "bowser.min.js",
                "script.js",
                "majic.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "color.css"
    ]
}