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
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
อีเมล hello@web3point.co
ประเภทการชำระเงิน 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\/*"
    ]
}