Trello Business Style
Makes it easier to see what's important on Trello cards for teams that have too much information on their Boards
Что такое Trello Business Style?
Trello Business Style - это расширение Chrome, разработанное Leonardo C Bottaro, и его основная функция - "Makes it easier to see what's important on Trello cards for teams that have too much information on their Boards".
Снимки экрана расширения
Скачать файл CRX расширения Trello Business Style
Скачайте файлы расширений Trello Business Style в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension adds a button on the top right corner inside your boards, click it to make the cards more readable and less crowded. Changelog: v1.2.1 Fixed Bug when changing boards Tweaks to the style v1.2.0 Updated extension to better use new Trello features Added persistent state v1.1.0 Bug fixes v1.0.0 Initial Release Make it better! Contribute on GitHub! https://github.com/leocb/trello-businessStyle
Основная информация о расширении
Название | Trello Business Style |
ID | knkibcjejmdcepoomodabefjobmajoco |
Официальный URL | https://chromewebstore.google.com/detail/trello-business-style/knkibcjejmdcepoomodabefjobmajoco |
Описание | Makes it easier to see what's important on Trello cards for teams that have too much information on their Boards |
Размер файла | 2.22 MB |
Количество установок | 297 |
Текущая Версия | 1.2.1 |
Последнее Обновление | 2018-03-28 |
Дата публикации | 2018-03-28 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | Leonardo C Bottaro |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/leocb/trello-businessStyle |
URL страницы помощи | https://github.com/leocb/trello-businessStyle/issues |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Trello Business Style", "short_name": "trello-Business-Style", "description": "Makes it easier to see what's important on Trello cards for teams that have too much information on their Boards", "version": "1.2.1", "icons": { "16": "images\/icon-16.png", "64": "images\/icon-48.png", "128": "images\/icon-128.png" }, "permissions": [ "storage", "https:\/\/trello.com\/*" ], "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/trello.com\/*" ], "js": [ "content-scripts.js" ], "css": [ "content-styles.css" ] } ] } |