Todoist for Chrome

Organize work and life with Todoist for Chrome

Todoist for Chrome là gì?

Todoist for Chrome là một tiện ích mở rộng Chrome được phát triển bởi https://todoist.com, và tính năng chính của nó là "Organize work and life with Todoist for Chrome".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Todoist for Chrome

Tải xuống các tệp mở rộng Todoist for Chrome dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Todoist for Chrome Todoist for Chrome
ID jldhpllghnbhlbpcmnajkpdmadaolakh
URL Chính Thức https://chromewebstore.google.com/detail/todoist-for-chrome/jldhpllghnbhlbpcmnajkpdmadaolakh
Mô tả Organize work and life with Todoist for Chrome
Kích Thước Tệp 84.38 KB
Số Lần Cài Đặt 924,160
Phiên Bản Hiện Tại 11.1
Cập Nhật Lần Cuối 2023-05-23
Ngày Phát Hành 2020-06-26
Đánh Giá 4.66/5 Tổng số 50953 Đánh Giá
Nhà Phát Triển https://todoist.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://todoist.com/
URL Trang Trợ Giúp https://todoist.com/help
URL Trang Chính Sách Bảo Mật https://doist.com/privacy
Ngôn Ngữ Được Hỗ Trợ 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__"
        }
    }
}