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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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\/*" ] } |