TaskTracks: Digital Planner

Win the workday. Meetings, tasks, and action items all shown in one place - pulled from the tools you already use.

什麼是TaskTracks: Digital Planner?

TaskTracks: Digital Planner是由https://tasktracks.com開發的Chrome擴展程式,該擴展的主要功能是“Win the workday. Meetings, tasks, and action items all shown in one place - pulled from the tools you already use.”。

擴展截圖

screenshot
screenshot
screenshot

下載TaskTracks: Digital Planner擴展crx文件

下載TaskTracks: Digital Planner擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Highly productive people use TaskTracks. TaskTracks is a digital planner that allows you see your meetings and tasks in one place, pulled from tools you already use like Google, Outlook, Asana, Todoist, and Asana. Prioritize your most important tasks and schedule them on your calendar so they actually get done.

The Chrome extension extends the TaskTracks planner to your browser home screen. Open a new tab to see your events and remaining tasks for the day. Add or edit tasks directly from your home screen. 

Connect your Calendar: 
Google Calendar
Outlook Calendar 
Office Calendar

Connect your task apps: 
Todoist
Google Tasks
Microsoft Todo
Asana
Clickup
Jira                    

擴展基本資訊

名稱 TaskTracks: Digital Planner TaskTracks: Digital Planner
ID jnjheednbljojgnafkhgmeaphbkcnido
官方網址 https://chromewebstore.google.com/detail/tasktracks-digital-planne/jnjheednbljojgnafkhgmeaphbkcnido
簡介 Win the workday. Meetings, tasks, and action items all shown in one place - pulled from the tools you already use.
檔案大小 4.62 MB
安裝次數 38
目前版本 1.0.3
更新時間 2022-10-26
上架時間 2022-10-17
評分 5.00/5 共 1 次評分
開發者 https://tasktracks.com
電子郵箱 [email protected]
付費類型 free
擴展官網 https://tasktracks.com
說明頁面URL https://tasktracks.freshdesk.com/support/home
隱私政策頁面URL https://tasktracks.com/privacy
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TaskTracks: Digital Planner",
    "description": "Win the workday. Meetings, tasks, and action items all shown in one place - pulled from the tools you already use.",
    "version": "1.0.3",
    "manifest_version": 3,
    "permissions": [
        "search",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/api.tasktracks.com\/graphql",
        "https:\/\/app.tasktracks.com\/"
    ],
    "action": {
        "default_icon": {
            "16": "icon_48.png"
        }
    },
    "icons": {
        "16": "icon_48.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "chrome_url_overrides": {
        "newtab": "index.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "externally_connectable": {
        "matches": [
            "https:\/\/app.tasktracks.com\/*"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.tasktracks.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "index.html"
            ],
            "matches": [
                "https:\/\/app.tasktracks.com\/*"
            ]
        }
    ]
}