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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://tasktracks.com และคุณลักษณะหลักของมันคือ "Win the workday. Meetings, tasks, and action items all shown in one place - pulled from the tools you already use."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TaskTracks: Digital Planner
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
ID | jnjheednbljojgnafkhgmeaphbkcnido |
URL อย่างเป็นทางการ | 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\/*" ] } ] } |