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
Что такое Trello To-do Notes?
Trello To-do Notes - это расширение Chrome, разработанное https://valerypopoff.ru/trello, и его основная функция - "Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: / Apr 30".
Снимки экрана расширения
Скачать файл CRX расширения Trello To-do Notes
Скачайте файлы расширений Trello To-do Notes в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 Основная информация о расширении
| Название | |
| ID | agdeebidnlidokgnnkhiiccefldilcjp |
| Официальный URL | https://chromewebstore.google.com/detail/trello-to-do-notes/agdeebidnlidokgnnkhiiccefldilcjp |
| Описание | Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: / Apr 30 |
| Размер файла | 109 KB |
| Количество установок | 1,099 |
| Текущая Версия | 0.9.8 |
| Последнее Обновление | 2020-12-12 |
| Дата публикации | 2018-07-02 |
| Рейтинг | 4.36/5 Всего 11 оценок |
| Разработчик | https://valerypopoff.ru/trello |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | http://valerypopoff.ru/trello |
| Поддерживаемые языки | 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"
]
} | |