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
官方URL 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"
    ]
}