[DEPRECATED] List Layouts for Trello
Allow Trello lists to be displayed vertically or in a grid.
O que é [DEPRECATED] List Layouts for Trello?
[DEPRECATED] List Layouts for Trello é uma extensão do Chrome desenvolvida por Natalie Chouinard, e sua principal característica é "Allow Trello lists to be displayed vertically or in a grid.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão [DEPRECATED] List Layouts for Trello
Baixe arquivos de extensão [DEPRECATED] List Layouts 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
***DEPRECATED*** This Chrome extension is now deprecated. Please consider these alternatives: Grid Layout for Trello: https://userstyles.org/styles/271254/grid-layout-for-trello Vertical Layout for Trello: https://userstyles.org/styles/271256/vertical-layout-for-trello ***DEPRECATED*** The List Layouts for Trello extension adds a button to your Chrome toolbar allowing you to toggle the Trello board layout from horizontal to grid to vertical by clicking the icon.
Informações Básicas da Extensão
Nome | [DEPRECATED] List Layouts for Trello |
ID | aldklnbenbdgfgfbflalmlddkkndgnlc |
URL Oficial | https://chromewebstore.google.com/detail/deprecated-list-layouts-f/aldklnbenbdgfgfbflalmlddkkndgnlc |
Descrição | Allow Trello lists to be displayed vertically or in a grid. |
Tamanho do Arquivo | 10.65 KB |
Contagem de Instalações | 51,027 |
Versão Atual | 4.0 |
Última Atualização | 2023-10-31 |
Data de Publicação | 2019-07-27 |
Classificação | 4.63/5 Total de 192 Avaliações |
Desenvolvedor | Natalie Chouinard |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/sudonatalie/layout-trello |
URL da Página de Ajuda | https://github.com/sudonatalie/layout-trello/issues |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "[DEPRECATED] List Layouts for Trello", "description": "Allow Trello lists to be displayed vertically or in a grid.", "version": "4.0", "author": "Natalie Chouinard", "icons": { "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/trello.com\/b\/*" ], "css": [ "css\/layout.css" ], "js": [ "js\/init.js" ] } ], "permissions": [ "*:\/\/trello.com\/b\/*", "declarativeContent", "storage", "webNavigation" ], "page_action": { "default_title": "List Layouts for Trello" }, "commands": { "_execute_page_action": { "suggested_key": { "default": "Ctrl+Shift+L", "mac": "MacCtrl+Shift+L" } } } } |