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.
¿Qué es Trello Grid Layout and Confetti Extension?
Trello Grid Layout and Confetti Extension es una extensión de Chrome desarrollada por https://web3point.co, y su función principal es "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 Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Trello Grid Layout and Confetti Extension
Descarga archivos de extensión Trello Grid Layout and Confetti Extension en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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"
Información Básica de la Extensión
Nombre | Trello Grid Layout and Confetti Extension |
ID | miodejnpnefiklobgajiemkdlfhldggi |
URL Oficial | https://chromewebstore.google.com/detail/trello-grid-layout-and-co/miodejnpnefiklobgajiemkdlfhldggi |
Descripción | 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. |
Tamaño del Archivo | 98.81 KB |
Cantidad de Instalaciones | 456 |
Versión Actual | 1.1 |
Última Actualización | 2020-10-04 |
Fecha de Publicación | 2020-10-04 |
Calificación | 4.00/5 Total de 4 Calificaciones |
Desarrollador | https://web3point.co |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://web3point.co |
Idiomas Soportados | 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\/*" ] } |