Trello Grid Layout and Confetti Extension
This is a external Trello extension for Trello, that displays the cards in a grid layout and does a confetti when you finish a task.
Что такое Trello Grid Layout and Confetti Extension?
Trello Grid Layout and Confetti Extension - это расширение Chrome, разработанное https://web3point.co, и его основная функция - "This is a external Trello extension for Trello, that displays the cards in a grid layout and does a confetti when you finish a task.".
Снимки экрана расширения
Скачать файл CRX расширения Trello Grid Layout and Confetti Extension
Скачайте файлы расширений Trello Grid Layout and Confetti Extension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
A lot of folks hate the long horizontal scrolling and a lot of vertical space is wasted by trello too. This extension displays your Trello cards in a grid fashion. Furthermore, if you move a task from a card to another card, it would do a confetti animation. The destination card(s) just have to include 'finish' (not case sensitive) in their title anywhere. Some valid card title examples: "[Finished]","Finished & Completed","Meowfinished","literallyanythingfiNishDed:D"
Основная информация о расширении
Название | Trello Grid Layout and Confetti Extension |
ID | miodejnpnefiklobgajiemkdlfhldggi |
Официальный URL | https://chromewebstore.google.com/detail/trello-grid-layout-and-co/miodejnpnefiklobgajiemkdlfhldggi |
Описание | This is a external Trello extension for Trello, that displays the cards in a grid layout and does a confetti when you finish a task. |
Размер файла | 98.81 KB |
Количество установок | 456 |
Текущая Версия | 1.1 |
Последнее Обновление | 2020-10-04 |
Дата публикации | 2020-10-04 |
Рейтинг | 4.00/5 Всего 4 оценок |
Разработчик | https://web3point.co |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://web3point.co |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Trello Grid Layout and Confetti Extension", "author": "Piyush Jha", "manifest_version": 2, "version": "1.1", "description": "This is a external Trello extension for Trello, that displays the cards in a grid layout and does a confetti when you finish a task.", "icons": { "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon48.png" }, "content_scripts": [ { "matches": [ "https:\/\/trello.com\/*" ], "run_at": "document_end", "js": [ "script.js" ], "css": [ "style.css" ] } ], "web_accessible_resources": [ "audio.mp3" ], "permissions": [ "tabs", "https:\/\/trello.com\/*" ] } |