Full screen card view for Trello
Makes the card and edit window in Trello.com full screen
O que é Full screen card view for Trello?
Full screen card view for Trello é uma extensão do Chrome desenvolvida por https://justin.kelly.org.au, e sua principal característica é "Makes the card and edit window in Trello.com full screen".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Full screen card view for Trello
Baixe arquivos de extensão Full screen card view for Trello 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
Converts the small Trello card view/edit windows to be full screen height and width. If you use trello.com alot like myself, and add lots (pages) of information in the card description section you’ll find the small card window a real pain to use. To fix this I whipped up a quick chrome extension to make the card edit window full screen, More info: * http://blog.justin.kelly.org.au/trello-big-edit/ Code on GitHub: * https://github.com/justinkelly/trello_big_edit
Informações Básicas da Extensão
Nome | Full screen card view for Trello |
ID | iakcnnmjbdoemkjecojadhpinebnkipm |
URL Oficial | https://chromewebstore.google.com/detail/full-screen-card-view-for/iakcnnmjbdoemkjecojadhpinebnkipm |
Descrição | Makes the card and edit window in Trello.com full screen |
Tamanho do Arquivo | 5.92 KB |
Contagem de Instalações | 1,820 |
Versão Atual | 3 |
Última Atualização | 2013-08-09 |
Data de Publicação | 2013-08-08 |
Classificação | 4.38/5 Total de 16 Avaliações |
Desenvolvedor | https://justin.kelly.org.au |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/justinkelly/trello_big_edit |
URL da Página de Ajuda | https://github.com/justinkelly/trello_big_edit/issues |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Full screen card view for Trello", "version": "3", "manifest_version": 2, "description": "Makes the card and edit window in Trello.com full screen", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/trello.com\/*", "https:\/\/trello.com\/*" ], "js": [ "trello_big_edit.user.js" ] } ] } |