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是由https://beyooon.jp开发的Chrome扩展程序,该扩展的主要功能是“TodoistChute calculates the estimated time required to every tasks on Todoist, and shows the finish time.”。
扩展截图
下载TodoistChute: Finish Time for Todoist扩展crx文件
下载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" ] } |