Asana Productivity Hacks
Several Asana hacks that make your life more productive!
O que é Asana Productivity Hacks?
Asana Productivity Hacks é uma extensão do Chrome desenvolvida por Dennis Paagman, e sua principal característica é "Several Asana hacks that make your life more productive!".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Asana Productivity Hacks
Baixe arquivos de extensão Asana Productivity Hacks 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
This small extension is here to increase your Asana productivity, it: - Introduces "Silent mode", which removes the unread inbox notifications - Introduces "meeting mode", which reduces visual clutter when using Asana in meetings - Introduces an "Inbox" switch, which completely hides your inbox so you can focus on work - Introduces a "Home" switch, which hides the new Home feature in the menu bar. Next to that, the extension: Makes private tasks more prominent with a red background, making sure you never accidentaly create private tasks anymore. Makes project and tags in the task list more clear (wider) on large screens.
Informações Básicas da Extensão
Nome | Asana Productivity Hacks |
ID | aednamkkbmbonmnmohjfhgmekggbnjlh |
URL Oficial | https://chromewebstore.google.com/detail/asana-productivity-hacks/aednamkkbmbonmnmohjfhgmekggbnjlh |
Descrição | Several Asana hacks that make your life more productive! |
Tamanho do Arquivo | 8.97 KB |
Contagem de Instalações | 117 |
Versão Atual | 0.17 |
Última Atualização | 2020-06-06 |
Data de Publicação | 2020-06-05 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Dennis Paagman |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Asana Productivity Hacks", "short_name": "Asana Productivity Hacks", "description": "Several Asana hacks that make your life more productive!", "version": "0.17", "author": "Dennis Paagman", "permissions": [ "storage", "tabs", "https:\/\/app.asana.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/app.asana.com\/*" ], "css": [ "asana-hacks.css" ], "js": [ "asana-hacks.js" ], "run_at": "document_idle" } ], "browser_action": { "name": "Asana hack settings", "default_icon": "icon.png", "default_popup": "settings.html" } } |