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

What is Trello To-do Notes?

Trello To-do Notes is a Chrome extension developed by https://valerypopoff.ru/trello, and its main feature is "Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: / Apr 30".

Extension Screenshots

screenshot

Download Trello To-do Notes Extension CRX File

Download Trello To-do Notes extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Trello To-do Notes Trello To-do Notes
ID agdeebidnlidokgnnkhiiccefldilcjp
Official URL https://chromewebstore.google.com/detail/trello-to-do-notes/agdeebidnlidokgnnkhiiccefldilcjp
Description Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: / Apr 30
File Size 109 KB
Installation Count 1,099
Current Version 0.9.8
Last Updated 2020-12-12
Publish Date 2018-07-02
Rating 4.36/5 Total 11 Ratings
Developer https://valerypopoff.ru/trello
Email [email protected]
Payment Type free
Extension Website http://valerypopoff.ru/trello
Supported Languages 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"
    ]
}