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?

Trello To-do Notes是由https://valerypopoff.ru/trello開發的Chrome擴展程式,該擴展的主要功能是“Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: / Apr 30”。

擴展截圖

screenshot

下載Trello To-do Notes擴展crx文件

下載Trello To-do Notes擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Trello To-do Notes Trello To-do Notes
ID agdeebidnlidokgnnkhiiccefldilcjp
官方網址 https://chromewebstore.google.com/detail/trello-to-do-notes/agdeebidnlidokgnnkhiiccefldilcjp
簡介 Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: / Apr 30
檔案大小 109 KB
安裝次數 1,099
目前版本 0.9.8
更新時間 2020-12-12
上架時間 2018-07-02
評分 4.36/5 共 11 次評分
開發者 https://valerypopoff.ru/trello
電子郵箱 [email protected]
付費類型 free
擴展官網 http://valerypopoff.ru/trello
支援的語言 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"
    ]
}