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.

Τι είναι το Trello Grid Layout and Confetti Extension;

Το Trello Grid Layout and Confetti Extension είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://web3point.co, και η κύρια λειτουργία του είναι "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.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Trello Grid Layout and Confetti Extension

Λήψη αρχείων επέκτασης Trello Grid Layout and Confetti Extension σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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"                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Trello Grid Layout and Confetti Extension Trello Grid Layout and Confetti Extension
ID miodejnpnefiklobgajiemkdlfhldggi
Επίσημο URL https://chromewebstore.google.com/detail/trello-grid-layout-and-co/miodejnpnefiklobgajiemkdlfhldggi
Περιγραφή 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.
Μέγεθος Αρχείου 98.81 KB
Αριθμός Εγκαταστάσεων 456
Τρέχουσα Έκδοση 1.1
Τελευταία Ενημέρωση 2020-10-04
Ημερομηνία Δημοσίευσης 2020-10-04
Αξιολόγηση 4.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής https://web3point.co
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://web3point.co
Υποστηριζόμενες Γλώσσες 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\/*"
    ]
}