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"
拡張機能の基本情報
名前 | 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 |
Eメール | [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\/*" ] } |