TodoistChute: Finish Time for Todoist
TodoistChute calculates the estimated time required to every tasks on Todoist, and shows the finish time.
Что такое TodoistChute: Finish Time for Todoist?
TodoistChute: Finish Time for Todoist - это расширение Chrome, разработанное https://beyooon.jp, и его основная функция - "TodoistChute calculates the estimated time required to every tasks on Todoist, and shows the finish time.".
Снимки экрана расширения
Скачать файл CRX расширения TodoistChute: Finish Time for Todoist
Скачайте файлы расширений TodoistChute: Finish Time for Todoist в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
TodoistChute calculates the estimated time required to every tasks on Todoist, and shows the finish time. Enter the time in minutes as "//60" in label or text of task. More information. https://github.com/hideyuk1-jp/todoistchute/blob/master/README.md
Основная информация о расширении
Название | TodoistChute: Finish Time for Todoist |
ID | ghllkaandaghmnhgldofdmollpjlefmj |
Официальный URL | https://chromewebstore.google.com/detail/todoistchute-finish-time/ghllkaandaghmnhgldofdmollpjlefmj |
Описание | TodoistChute calculates the estimated time required to every tasks on Todoist, and shows the finish time. |
Размер файла | 391 KB |
Количество установок | 1,748 |
Текущая Версия | 2.2.0 |
Последнее Обновление | 2023-05-04 |
Дата публикации | 2020-06-11 |
Рейтинг | 4.95/5 Всего 22 оценок |
Разработчик | https://beyooon.jp |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/hideyuk1-jp/todoistchute |
URL страницы помощи | https://beyooon.jp/contact |
Поддерживаемые языки | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extName__", "description": "__MSG_extDescription__", "version": "2.2.0", "default_locale": "en", "browser_action": { "default_icon": "img\/icon.png" }, "icons": { "128": "img\/icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.todoist.com\/*" ], "js": [ "js\/lib\/jquery-3.6.4.min.js", "js\/tc.js", "js\/tc_calender.js" ], "css": [ "css\/tc.css" ], "run_at": "document_end" } ], "options_page": "options.html", "permissions": [ "storage" ] } |