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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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