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.

Wat is Task Management System?

Task Management System is een Chrome-extensie ontwikkeld door em_te, en de belangrijkste functie is "View your Microsoft Tasks in an offline interface that's both quick and efficient. Easily add, postpone and mark tasks as done.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Task Management System

Download Task Management System-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Task Management System Task Management System
ID njlkfhoiajahhkbllfkgppndfdadimcc
Officiële URL https://chromewebstore.google.com/detail/task-management-system/njlkfhoiajahhkbllfkgppndfdadimcc
Beschrijving View your Microsoft Tasks in an offline interface that's both quick and efficient. Easily add, postpone and mark tasks as done.
Bestandsgrootte 53.55 KB
Aantal Installaties 53
Huidige Versie 0.3
Laatst Bijgewerkt 2020-08-04
Publicatiedatum 2020-06-21
Ontwikkelaar em_te
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://em-te.github.io/privacy
Ondersteunde Talen 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"
    ]
}