TaskTracks: Digital Planner
Win the workday. Meetings, tasks, and action items all shown in one place - pulled from the tools you already use.
Vad är TaskTracks: Digital Planner?
TaskTracks: Digital Planner är en Chrome-tillägg utvecklad av https://tasktracks.com, och dess huvudfunktion är "Win the workday. Meetings, tasks, and action items all shown in one place - pulled from the tools you already use.".
Tilläggsskärmbilder
Ladda ner TaskTracks: Digital Planner-förlängningens CRX-fil
Ladda ner TaskTracks: Digital Planner-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | TaskTracks: Digital Planner |
ID | jnjheednbljojgnafkhgmeaphbkcnido |
Officiell webbadress | https://chromewebstore.google.com/detail/tasktracks-digital-planne/jnjheednbljojgnafkhgmeaphbkcnido |
Beskrivning | Win the workday. Meetings, tasks, and action items all shown in one place - pulled from the tools you already use. |
Filstorlek | 4.62 MB |
Antal Installationer | 38 |
Aktuell Version | 1.0.3 |
Senast Uppdaterad | 2022-10-26 |
Publiceringsdatum | 2022-10-17 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | https://tasktracks.com |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://tasktracks.com |
Hjälpsida URL | https://tasktracks.freshdesk.com/support/home |
URL till Sekretesspolicy Sidan | https://tasktracks.com/privacy |
Stödda Språk | 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\/*" ] } ] } |