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'est-ce que Trello Grid Layout and Confetti Extension ?

Trello Grid Layout and Confetti Extension est une extension Chrome développée par https://web3point.co, et sa fonction principale est "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.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Trello Grid Layout and Confetti Extension

Téléchargez les fichiers d'extension Trello Grid Layout and Confetti Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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"                    

Informations de Base sur l'Extension

Nom Trello Grid Layout and Confetti Extension Trello Grid Layout and Confetti Extension
ID miodejnpnefiklobgajiemkdlfhldggi
URL Officiel https://chromewebstore.google.com/detail/trello-grid-layout-and-co/miodejnpnefiklobgajiemkdlfhldggi
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.
Taille du Fichier 98.81 KB
Nombre d'Installations 456
Version Actuelle 1.1
Dernière Mise à Jour 2020-10-04
Date de Publication 2020-10-04
Évaluation 4.00/5 Total 4 Évaluations
Développeur https://web3point.co
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://web3point.co
Langues Prises en Charge 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\/*"
    ]
}