TredoList
Turn Trello into a convenient todolist tool, with new list layouts and dynamic color themes
TredoList란 무엇입니까?
TredoList은(는) Olivier Cado에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Turn Trello into a convenient todolist tool, with new list layouts and dynamic color themes"입니다.
확장 프로그램 스크린샷
TredoList 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Get rid of Todo / In Progress / Done lists! Now your cards get colored according to their status. In addition, your lists can be displayed horizontally, on a grid layout or in multiple swimlanes. PS You can enable only coloring or layouts if you prefer. Read my blog post for learn more about the concept: https://medium.com/@gwened/7-ways-of-keeping-track-of-your-todos-2b86b85ecab3 Usage: 1. Install the TredoList extension Note: Chrome will ask you for permission to view your browsing history. Apart from modifying the style of your open Trello pages, TredoList does not and will NOT collect, save, or transmit your browsing history or your Trello data. 2. Go to Trello.com, sign in and visit your favourite board 3. The TredoList button becomes active in the Chrome toolbar. Click it! 4. Change the layout and colors, or visit the "What's This" button to learn more. This extension is a companion for Trello.com boards, but the author is not affiliated to Trello or Atlassian Corp. Special thanks to Natalie Chouinard for the initial work on List Layouts for Trello. Know bug: Moving cards when using swimlanes does not always work as intended. You can temporarily disable the layout and try again.
확장 프로그램 기본 정보
이름 | |
ID | ccdkhfdflkpacnhjcefjlhlaopfgjkab |
공식 URL | https://chromewebstore.google.com/detail/tredolist/ccdkhfdflkpacnhjcefjlhlaopfgjkab |
설명 | Turn Trello into a convenient todolist tool, with new list layouts and dynamic color themes |
파일 크기 | 51.58 KB |
설치 횟수 | 376 |
현재 버전 | 1.0.0.1 |
최근 업데이트 | 2023-12-04 |
출시 날짜 | 2020-06-27 |
평점 | 5.00/5 총 5 개의 평점 |
개발자 | Olivier Cado |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/Gwened/tredolist/blob/master/README.md#tredolist |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "TredoList", "applications": { "gecko": { "id": "[email protected]" } }, "description": "Turn Trello into a convenient todolist tool, with new list layouts and dynamic color themes", "version": "1.0.0.1", "author": "Olivier Cado", "icons": { "48": "icon48.png", "128": "icon128.png" }, "background": { "service_worker": "service_worker.js", "type": "module" }, "permissions": [ "scripting", "declarativeContent", "storage" ], "host_permissions": [ "*:\/\/trello.com\/b\/*" ], "web_accessible_resources": [ { "resources": [ "css\/layout.css", "css\/theme-.css", "css\/theme-bright.css", "css\/theme-pastel.css", "css\/theme-dark.css" ], "matches": [ "*:\/\/trello.com\/*" ] } ], "action": { "default_title": "Tredolist", "default_popup": "config.html", "default_icon": { "19": "icon48.png", "38": "icon48.png", "48": "icon48.png" } } } |