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
Qu'est-ce que Trello To-do Notes ?
Trello To-do Notes est une extension Chrome développée par https://valerypopoff.ru/trello, et sa fonction principale est "Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: / Apr 30".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Trello To-do Notes
Téléchargez les fichiers d'extension Trello To-do Notes au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Trello To-do Notes |
ID | agdeebidnlidokgnnkhiiccefldilcjp |
URL Officiel | 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 |
Taille du Fichier | 109 KB |
Nombre d'Installations | 1,099 |
Version Actuelle | 0.9.8 |
Dernière Mise à Jour | 2020-12-12 |
Date de Publication | 2018-07-02 |
Évaluation | 4.36/5 Total 11 Évaluations |
Développeur | https://valerypopoff.ru/trello |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | http://valerypopoff.ru/trello |
Langues Prises en Charge | 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" ] } |