Todoist for Chrome
Organize work and life with Todoist for Chrome
什麼是Todoist for Chrome?
Todoist for Chrome是由https://todoist.com開發的Chrome擴展程式,該擴展的主要功能是“Organize work and life with Todoist for Chrome”。
擴展截圖
下載Todoist for Chrome擴展crx文件
下載Todoist for Chrome擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Ranked as “the best to-do list right now” by The Verge, Todoist is used by 25 million people to organize, plan and collaborate on projects, both big and small.
Use Todoist for Chrome to:
• Add websites as tasks: Add a blog post to your reading list. Save an item to your wishlist. Add work tasks to follow up on.
• Plan your day: Quickly organize your tasks for the day right from the extension.
• Complete tasks from the browser: Once your tasks are done, check them off without switching context.
Do more with Todoist on desktop and mobile:
• Capture and organize tasks the moment they pop into your head.
• Remember deadlines with reminders and due dates.
• Build lasting habits with recurring due dates like "every Monday".
• Collaborate on projects by assigning tasks to others.
• Prioritize your tasks with priority levels.
• Track your progress with personalized productivity trends.
With access to 60+ app integrations like Google Drive, Dropbox, Zapier, Evernote, and Slack, Todoist will quickly become your hub for getting work and life organized.
Happy organizing!
• • •
Questions? Feedback? Visit https://get.todoist.help or reach out on Twitter @todoist. 擴展基本資訊
| 名稱 | |
| ID | jldhpllghnbhlbpcmnajkpdmadaolakh |
| 官方網址 | https://chromewebstore.google.com/detail/todoist-for-chrome/jldhpllghnbhlbpcmnajkpdmadaolakh |
| 簡介 | Organize work and life with Todoist for Chrome |
| 檔案大小 | 84.38 KB |
| 安裝次數 | 924,160 |
| 目前版本 | 11.1 |
| 更新時間 | 2023-05-23 |
| 上架時間 | 2020-06-26 |
| 評分 | 4.66/5 共 50953 次評分 |
| 開發者 | https://todoist.com |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://todoist.com/ |
| 說明頁面URL | https://todoist.com/help |
| 隱私政策頁面URL | https://doist.com/privacy |
| 支援的語言 | de,en,fr,nl,no,tr,da,es,it,pl,pt-BR,pt-PT,fi,sv,ru,zh-CN,zh-TW,ja,ko |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"version": "11.1",
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"short_name": "Todoist",
"default_locale": "en",
"icons": {
"16": "todoist_16.png",
"48": "todoist_48.png",
"128": "todoist_128.png",
"256": "todoist_256.png",
"512": "todoist_512.png"
},
"background": {
"page": "background.html"
},
"browser_action": {
"default_title": "Todoist",
"default_icon": "todoist_256.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/*.todoist.com\/*",
"https:\/\/*.todoist.com\/*"
],
"js": [
"browserApi.js",
"counter_update.js"
],
"all_frames": true
}
],
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"permissions": [
"storage",
"tabs",
"contextMenus",
"webRequest",
"webRequestBlocking",
"http:\/\/*.todoist.com\/*",
"https:\/\/*.todoist.com\/*",
"background",
"declarativeNetRequestWithHostAccess"
],
"commands": {
"add-to-todoist": {
"suggested_key": {
"default": "Alt+Shift+A"
},
"description": "__MSG_addToTodoist__"
}
}
} | |