Asana Productivity Hacks
Several Asana hacks that make your life more productive!
Co to jest Asana Productivity Hacks?
Asana Productivity Hacks to rozszerzenie Chrome opracowane przez Dennis Paagman, a jego główną funkcją jest „Several Asana hacks that make your life more productive!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Asana Productivity Hacks
Pobierz pliki rozszerzeń Asana Productivity Hacks w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Asana Productivity Hacks |
ID | aednamkkbmbonmnmohjfhgmekggbnjlh |
Oficjalny URL | https://chromewebstore.google.com/detail/asana-productivity-hacks/aednamkkbmbonmnmohjfhgmekggbnjlh |
Opis | Several Asana hacks that make your life more productive! |
Rozmiar pliku | 8.97 KB |
Liczba instalacji | 117 |
Aktualna Wersja | 0.17 |
Ostatnia Aktualizacja | 2020-06-06 |
Data Publikacji | 2020-06-05 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | Dennis Paagman |
Typ Płatności | free |
Obsługiwane Języki | 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" } } |