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 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 फ़ाइल डाउनलोड करें

crx प्रारूप में Trello Grid Layout and Confetti Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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\/*"
    ]
}