Asana Load More
This extension will load all subtasks in Asana. It also lets you hide certain sections.
Что такое Asana Load More?
Asana Load More - это расширение Chrome, разработанное Fat Cattitude, LLC, и его основная функция - "This extension will load all subtasks in Asana. It also lets you hide certain sections.".
Снимки экрана расширения
Скачать файл CRX расширения Asana Load More
Скачайте файлы расширений Asana Load More в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension will automatically load all subtasks in Asana. It will also allow you to toggle certain subtask sections.
Основная информация о расширении
Название | |
ID | gmgelaegjlfeldnmlilkeaegejmlgjhf |
Официальный URL | https://chrome.google.com/webstore/detail/asana-load-more/gmgelaegjlfeldnmlilkeaegejmlgjhf |
Описание | This extension will load all subtasks in Asana. It also lets you hide certain sections. |
Размер файла | 110 KB |
Количество установок | 703 |
Текущая Версия | 0.0.0.4 |
Последнее Обновление | 2019-11-13 |
Дата публикации | 2019-11-09 |
Рейтинг | 4.20/5 Всего 10 оценок |
Разработчик | Fat Cattitude, LLC |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | 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" ] } ] } |