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
Hvad er Trello To-do Notes?
Trello To-do Notes er en Chrome-udvidelse udviklet af https://valerypopoff.ru/trello, og dens hovedfunktion er "Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: / Apr 30".
Udvidelsesskærmbilleder
Download Trello To-do Notes-udvidelses-CRX-fil
Download Trello To-do Notes-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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 Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | agdeebidnlidokgnnkhiiccefldilcjp |
| Officiel URL | https://chromewebstore.google.com/detail/trello-to-do-notes/agdeebidnlidokgnnkhiiccefldilcjp |
| Beskrivelse | Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: / Apr 30 |
| Filstørrelse | 109 KB |
| Antal Installationer | 1,099 |
| Nuværende Version | 0.9.8 |
| Senest Opdateret | 2020-12-12 |
| Udgivelsesdato | 2018-07-02 |
| Bedømmelse | 4.36/5 Samlet 11 Bedømmelser |
| Udvikler | https://valerypopoff.ru/trello |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | http://valerypopoff.ru/trello |
| Understøttede Sprog | 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"
]
} | |