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
Co to jest Trello To-do Notes?
Trello To-do Notes to rozszerzenie Chrome opracowane przez https://valerypopoff.ru/trello, a jego główną funkcją jest „Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: / Apr 30”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Trello To-do Notes
Pobierz pliki rozszerzeń Trello To-do Notes w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Trello To-do Notes |
ID | agdeebidnlidokgnnkhiiccefldilcjp |
Oficjalny URL | https://chromewebstore.google.com/detail/trello-to-do-notes/agdeebidnlidokgnnkhiiccefldilcjp |
Opis | Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: / Apr 30 |
Rozmiar pliku | 109 KB |
Liczba instalacji | 1,099 |
Aktualna Wersja | 0.9.8 |
Ostatnia Aktualizacja | 2020-12-12 |
Data Publikacji | 2018-07-02 |
Ocena | 4.36/5 Łącznie 11 Oceny |
Deweloper | https://valerypopoff.ru/trello |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | http://valerypopoff.ru/trello |
Obsługiwane Języki | 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" ] } |