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."입니다.
확장 프로그램 스크린샷
TaskTracks: Digital Planner 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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\/*" ] } ] } |