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開發的Chrome擴展程式,該擴展的主要功能是“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擴展crx文件
下載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"                     擴展基本資訊
| 名稱 |   |  
| ID | miodejnpnefiklobgajiemkdlfhldggi | 
| 官方網址 | 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\/*"
    ]
}  |  |