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

Cos'è Trello To-do Notes?

Trello To-do Notes è un'estensione di Chrome sviluppata da https://valerypopoff.ru/trello, e la sua funzione principale è "Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: / Apr 30".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Trello To-do Notes

Scarica i file di estensione Trello To-do Notes in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Trello To-do Notes Trello To-do Notes
ID agdeebidnlidokgnnkhiiccefldilcjp
URL Ufficiale https://chromewebstore.google.com/detail/trello-to-do-notes/agdeebidnlidokgnnkhiiccefldilcjp
Descrizione Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: / Apr 30
Dimensione del File 109 KB
Conteggio Installazioni 1,099
Versione Corrente 0.9.8
Ultimo Aggiornamento 2020-12-12
Data di Pubblicazione 2018-07-02
Valutazione 4.36/5 Totale 11 Valutazioni
Sviluppatore https://valerypopoff.ru/trello
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://valerypopoff.ru/trello
Lingue Supportate 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"
    ]
}