Task Management System

View your Microsoft Tasks in an offline interface that's both quick and efficient. Easily add, postpone and mark tasks as done.

Task Management System란 무엇입니까?

Task Management System은(는) em_te에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "View your Microsoft Tasks in an offline interface that's both quick and efficient. Easily add, postpone and mark tasks as done."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Task Management System 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        A lite task manager for your Outlook/Microsoft Tasks. Click on the toolbar icon to open the manager.

Features:
* Viewable even when you are offline
* Instantly viewable because tasks are saved on your computer
* Multiple column design to fit more todos in the viewer
* Tasks are grouped by date which reduces cognitive overload
* Easy to use calendar picker
* Easy to use relative time picker
* Dark mode (if your OS supports it)

A user account with Hotmail, Outlook or Office 365 is required.

By using this extension you agree to be bound by the:
* Microsoft Services Agreement https://www.microsoft.com/en-us/servicesagreement
* Microsoft Privacy and Cookies https://go.microsoft.com/fwlink/?LinkId=512132
* Simplified BSD License https://opensource.org/licenses/bsd-license.php

This third-party extension is not affiliated with Microsoft.                    

확장 프로그램 기본 정보

이름 Task Management System Task Management System
ID njlkfhoiajahhkbllfkgppndfdadimcc
공식 URL https://chromewebstore.google.com/detail/task-management-system/njlkfhoiajahhkbllfkgppndfdadimcc
설명 View your Microsoft Tasks in an offline interface that's both quick and efficient. Easily add, postpone and mark tasks as done.
파일 크기 53.55 KB
설치 횟수 53
현재 버전 0.3
최근 업데이트 2020-08-04
출시 날짜 2020-06-21
개발자 em_te
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://em-te.github.io/privacy
지원되는 언어 de,en,fr,nl,es,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Task Management System",
    "author": "Terry Yuen",
    "version": "0.3",
    "description": "__MSG_extensionDescription__",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "16": "icon_16.png",
        "24": "icon_24.png",
        "38": "icon_38.png",
        "48": "icon_48.png",
        "96": "icon_96.png",
        "128": "icon_128.png"
    },
    "permissions": [
        "*:\/\/graph.microsoft.com\/*",
        "*:\/\/login.microsoftonline.com\/*",
        "storage",
        "unlimitedStorage",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/login.microsoftonline.com\/common\/oauth2\/nativeclient*"
            ],
            "js": [
                "\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "icon_16.png",
            "24": "icon_24.png",
            "38": "icon_38.png",
            "48": "icon_48.png",
            "96": "icon_96.png"
        }
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y"
            }
        }
    },
    "web_accessible_resources": [
        "app.html"
    ]
}