Trello Grid Layout and Confetti Extension

This is a external Trello extension for Trello, that displays the cards in a grid layout and does a confetti when you finish a task.

O que é Trello Grid Layout and Confetti Extension?

Trello Grid Layout and Confetti Extension é uma extensão do Chrome desenvolvida por https://web3point.co, e sua principal característica é "This is a external Trello extension for Trello, that displays the cards in a grid layout and does a confetti when you finish a task.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Trello Grid Layout and Confetti Extension

Baixe arquivos de extensão Trello Grid Layout and Confetti Extension 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

                        A lot of folks hate the long horizontal scrolling and a lot of vertical space is wasted by trello too. This extension displays your Trello cards in a grid fashion.

Furthermore, if you move a task from a card to another card, it would do a confetti animation. The destination card(s) just have to include 'finish' (not case sensitive) in their title anywhere. Some valid card title examples: "[Finished]","Finished & Completed","Meowfinished","literallyanythingfiNishDed:D"                    

Informações Básicas da Extensão

Nome Trello Grid Layout and Confetti Extension Trello Grid Layout and Confetti Extension
ID miodejnpnefiklobgajiemkdlfhldggi
URL Oficial https://chromewebstore.google.com/detail/trello-grid-layout-and-co/miodejnpnefiklobgajiemkdlfhldggi
Descrição This is a external Trello extension for Trello, that displays the cards in a grid layout and does a confetti when you finish a task.
Tamanho do Arquivo 98.81 KB
Contagem de Instalações 456
Versão Atual 1.1
Última Atualização 2020-10-04
Data de Publicação 2020-10-04
Classificação 4.00/5 Total de 4 Avaliações
Desenvolvedor https://web3point.co
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://web3point.co
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Trello Grid Layout and Confetti Extension",
    "author": "Piyush Jha",
    "manifest_version": 2,
    "version": "1.1",
    "description": "This is a external Trello extension for Trello, that displays the cards in a grid layout and does a confetti when you finish a task.",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trello.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "script.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "audio.mp3"
    ],
    "permissions": [
        "tabs",
        "https:\/\/trello.com\/*"
    ]
}