Asana Load More
This extension will load all subtasks in Asana. It also lets you hide certain sections.
Co to jest Asana Load More?
Asana Load More to rozszerzenie Chrome opracowane przez Fat Cattitude, LLC, a jego główną funkcją jest „This extension will load all subtasks in Asana. It also lets you hide certain sections.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Asana Load More
Pobierz pliki rozszerzeń Asana Load More 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 extension will automatically load all subtasks in Asana. It will also allow you to toggle certain subtask sections.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | gmgelaegjlfeldnmlilkeaegejmlgjhf |
Oficjalny URL | https://chrome.google.com/webstore/detail/asana-load-more/gmgelaegjlfeldnmlilkeaegejmlgjhf |
Opis | This extension will load all subtasks in Asana. It also lets you hide certain sections. |
Rozmiar pliku | 110 KB |
Liczba instalacji | 703 |
Aktualna Wersja | 0.0.0.4 |
Ostatnia Aktualizacja | 2019-11-13 |
Data Publikacji | 2019-11-09 |
Ocena | 4.20/5 Łącznie 10 Oceny |
Deweloper | Fat Cattitude, LLC |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Asana Load More", "description": "This extension will load all subtasks in Asana. It also lets you hide certain sections.", "version": "0.0.0.4", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "Asana Load More" }, "permissions": [ "activeTab", "tabs", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/*.asana.com\/*" ], "js": [ "content.js" ] } ] } |