Add to Microsoft To Do

It's the easiest way to save anything from the web to your ToDo lists.

Add to Microsoft To Doคืออะไร?

Add to Microsoft To Do เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Pavel Ukhan และคุณลักษณะหลักของมันคือ "It's the easiest way to save anything from the web to your ToDo lists."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Add to Microsoft To Do

ดาวน์โหลดไฟล์ส่วนขยาย Add to Microsoft To Do ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        ❗ This is not an official Microsoft extension.

The extension allows you to add information about the current page to ToDo: title, selected text, and URL.

FEATURES
* Adding using the extension interface - you can add page information, select the desired list, and set the reminder time beforehand.
* Quick Add - adds page (or link) information to the default list without demonstrating the extension interface.
* Assigning keyboard shortcuts for both types of operations.
* Flexible configuration of the expansion interface: time and date formats, default list (with ability to remember last used), default reminder time (or last used).

PRIVACY POLICY

https://github.com/ukhan/add-to-ms-todo/blob/master/PRIVACY.md

UNEXPECTED BEHAVIOR
* If more than 24 hours have passed since the previous use of the extension, then when you start it you will see a browser tab automatically opening in the background. The extension uses this tab to obtain an updated access token. It is due to the features of the Microsoft identity platform. Details: https://github.com/MicrosoftDocs/azure-docs/issues/62164.

KNOWN DISADVANTAGES
* When you select a list, the lists are shown in an un-grouped form. Reason: the public API does not allow you to get information about grouping lists.
* This is not an official extension. But unfortunately, there's no official extension at this time – https://todo.uservoice.com/forums/597175-feature-suggestions/suggestions/32661145-browser-extension-firefox-chrome-edge-opera-s
* The extension requires the seemingly unnecessary "Read browsing history" permission. But this permission is needed for an alternative implementation of user authentication. The reason is the inability to use the stock chrome.identity.launchWebAuthFlow with the Microsoft identity platform. More details: https://github.com/MicrosoftDocs/azure-docs/issues/62164.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Add to Microsoft To Do Add to Microsoft To Do
ID loblkkbfciiklgoblkigehhghfjfjede
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/add-to-microsoft-to-do/loblkkbfciiklgoblkigehhghfjfjede
คำอธิบาย It's the easiest way to save anything from the web to your ToDo lists.
ขนาดไฟล์ 1.12 MB
จำนวนการติดตั้ง 31,323
เวอร์ชันปัจจุบัน 0.20.0
อัปเดตครั้งล่าสุด 2022-03-09
วันที่เผยแพร่ 2020-06-02
คะแนน 4.40/5 รวมทั้งหมด 78 คะแนน
ผู้พัฒนา Pavel Ukhan
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/ukhan/add-to-ms-todo
URL หน้านโยบายความเป็นส่วนตัว https://github.com/ukhan/privacy
ภาษาที่รองรับ en,ru,uk
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "default_locale": "en",
    "icons": {
        "16": "icons\/todo-16.png",
        "48": "icons\/todo-48.png",
        "128": "icons\/todo-128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/todo-16.png",
            "24": "icons\/todo-24.png",
            "32": "icons\/todo-32.png"
        },
        "default_popup": "popup.html",
        "default_title": "__MSG_BrowserActionTitle__"
    },
    "commands": {
        "QUICK_ADD": {
            "description": "__MSG_QuickAddCommandDescription__"
        }
    },
    "permissions": [
        "identity",
        "contextMenus",
        "storage",
        "notifications",
        "activeTab",
        "tabs"
    ],
    "version": "0.20.0",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_page": "options.html"
}