TaskTracks: Digital Planner
Win the workday. Meetings, tasks, and action items all shown in one place - pulled from the tools you already use.
O que é TaskTracks: Digital Planner?
TaskTracks: Digital Planner é uma extensão do Chrome desenvolvida por https://tasktracks.com, e sua principal característica é "Win the workday. Meetings, tasks, and action items all shown in one place - pulled from the tools you already use.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão TaskTracks: Digital Planner
Baixe arquivos de extensão TaskTracks: Digital Planner no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | TaskTracks: Digital Planner |
ID | jnjheednbljojgnafkhgmeaphbkcnido |
URL Oficial | https://chromewebstore.google.com/detail/tasktracks-digital-planne/jnjheednbljojgnafkhgmeaphbkcnido |
Descrição | Win the workday. Meetings, tasks, and action items all shown in one place - pulled from the tools you already use. |
Tamanho do Arquivo | 4.62 MB |
Contagem de Instalações | 38 |
Versão Atual | 1.0.3 |
Última Atualização | 2022-10-26 |
Data de Publicação | 2022-10-17 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | https://tasktracks.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://tasktracks.com |
URL da Página de Ajuda | https://tasktracks.freshdesk.com/support/home |
URL da Página de Política de Privacidade | https://tasktracks.com/privacy |
Idiomas Suportados | 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\/*" ] } ] } |