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
Was ist Trello To-do Notes?
Trello To-do Notes ist eine Chrome-Erweiterung, die von https://valerypopoff.ru/trello entwickelt wurde, und ihr Hauptmerkmal ist "Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: / Apr 30".
Erweiterungsscreenshots
Trello To-do Notes-Erweiterungs-CRX-Datei herunterladen
Laden Sie Trello To-do Notes-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Trello To-do Notes |
ID | agdeebidnlidokgnnkhiiccefldilcjp |
Offizielle URL | https://chromewebstore.google.com/detail/trello-to-do-notes/agdeebidnlidokgnnkhiiccefldilcjp |
Beschreibung | Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: / Apr 30 |
Dateigröße | 109 KB |
Installationsanzahl | 1,099 |
Aktuelle Version | 0.9.8 |
Letztes Update | 2020-12-12 |
Veröffentlichungsdatum | 2018-07-02 |
Bewertung | 4.36/5 Insgesamt 11 Bewertungen |
Entwickler | https://valerypopoff.ru/trello |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | http://valerypopoff.ru/trello |
Unterstützte Sprachen | 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" ] } |