Trello Auto Scroll
This extension Allow your Trello automatically scroll in loop if you have more columns than fit in your screen.
Что такое Trello Auto Scroll?
Trello Auto Scroll - это расширение Chrome, разработанное dashboard-team, и его основная функция - "This extension Allow your Trello automatically scroll in loop if you have more columns than fit in your screen.".
Снимки экрана расширения
Скачать файл CRX расширения Trello Auto Scroll
Скачайте файлы расширений Trello Auto Scroll в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension allow your Trello scroll automatically until the last card and back to the first card as a loop. It's extremely useful for using Trello as a slide show board. Developed by: Willian Keller Diego Ocko Martins
Основная информация о расширении
Название | |
ID | iheeklbhnidcdjfkonakkkbbjophomkk |
Официальный URL | https://chrome.google.com/webstore/detail/trello-auto-scroll/iheeklbhnidcdjfkonakkkbbjophomkk |
Описание | This extension Allow your Trello automatically scroll in loop if you have more columns than fit in your screen. |
Размер файла | 78.89 KB |
Количество установок | 126 |
Текущая Версия | 1.7 |
Последнее Обновление | 2017-11-06 |
Дата публикации | 2017-11-06 |
Рейтинг | 1.00/5 Всего 1 оценок |
Разработчик | dashboard-team |
Тип оплаты | free |
Поддерживаемые языки | en,pt-BR |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "version": "1.7", "content_scripts": [ { "matches": [ "https:\/\/trello.com\/*" ], "js": [ "src\/utils\/storage.min.js", "src\/utils\/runtime.min.js", "src\/vendor\/jquery.min.js", "src\/main.js" ], "run_at": "document_end" } ], "options_ui": { "page": "src\/options.html", "chrome_style": false }, "icons": { "128": "src\/icons\/icon.png" }, "browser_action": { "default_icon": "src\/icons\/icon.png", "default_popup": "src\/popup.html", "default_title": "Trello Auto Scroll" }, "permissions": [ "storage", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ] } |