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
Vad är Trello To-do Notes?
Trello To-do Notes är en Chrome-tillägg utvecklad av https://valerypopoff.ru/trello, och dess huvudfunktion är "Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: / Apr 30".
Tilläggsskärmbilder
Ladda ner Trello To-do Notes-förlängningens CRX-fil
Ladda ner Trello To-do Notes-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
| Namn | |
| ID | agdeebidnlidokgnnkhiiccefldilcjp |
| Officiell webbadress | https://chromewebstore.google.com/detail/trello-to-do-notes/agdeebidnlidokgnnkhiiccefldilcjp |
| Beskrivning | Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: / Apr 30 |
| Filstorlek | 109 KB |
| Antal Installationer | 1,099 |
| Aktuell Version | 0.9.8 |
| Senast Uppdaterad | 2020-12-12 |
| Publiceringsdatum | 2018-07-02 |
| Betyg | 4.36/5 Totalt 11 Betyg |
| Utvecklare | https://valerypopoff.ru/trello |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | http://valerypopoff.ru/trello |
| Stödda Språk | 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"
]
} | |