Trello Auto Scroll
This extension Allow your Trello automatically scroll in loop if you have more columns than fit in your screen.
O que é Trello Auto Scroll?
Trello Auto Scroll é uma extensão do Chrome desenvolvida por dashboard-team, e sua principal característica é "This extension Allow your Trello automatically scroll in loop if you have more columns than fit in your screen.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Trello Auto Scroll
Baixe arquivos de extensão Trello Auto Scroll no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | |
ID | iheeklbhnidcdjfkonakkkbbjophomkk |
URL Oficial | https://chrome.google.com/webstore/detail/trello-auto-scroll/iheeklbhnidcdjfkonakkkbbjophomkk |
Descrição | This extension Allow your Trello automatically scroll in loop if you have more columns than fit in your screen. |
Tamanho do Arquivo | 78.89 KB |
Contagem de Instalações | 126 |
Versão Atual | 1.7 |
Última Atualização | 2017-11-06 |
Data de Publicação | 2017-11-06 |
Classificação | 1.00/5 Total de 1 Avaliações |
Desenvolvedor | dashboard-team |
Tipo de Pagamento | free |
Idiomas Suportados | 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:\/\/*\/*" ] } |