Trello plugin all-in-one - Truello
Tired of having too many extensions for Trello? Add missing features in ONE Chrome extension: Card age, number, count and lable name
Trello plugin all-in-one - Truello란 무엇입니까?
Trello plugin all-in-one - Truello은(는) Derrick Qin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Tired of having too many extensions for Trello? Add missing features in ONE Chrome extension: Card age, number, count and lable name"입니다.
확장 프로그램 스크린샷
Trello plugin all-in-one - Truello 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Thanks for using Truello, an all-in-one Trello plugin. ***NEW:*** [20231104] Well, I didn't realize this extension is used by so many people. This release is for you folks! There was a release of Trello website on 20 Oct 2023, which removed hidden card number and the total number of each list/column. I had to re-implement these features. It took me some time because Chrome Web Store no longer accepts Manifest V2 extensions. I had to migrate it to Manifest V3. So there yougo: version 2.0.0 is here. [20170815] Show full label name - fix it to revert the changes Trello did on 7th Aug [20170630] Now adding options to disable features excluding aging Features: 1. True age for the Trello card Trello has a card aging feature, but it does not show the true age of the card in a list. When you add a comment or update the card name, the card will be treated as new. The feature can tell you how long the card has been in the list. No excuse any more! 2. Card number Display the missing Trello card number. 3. Card count for each column Display the card count at top of the columns. 4. Label name Display the label names and still keep the color of them.
확장 프로그램 기본 정보
이름 | Trello plugin all-in-one - Truello |
ID | pnfioopglhebphfgkagefdmajgibahkk |
공식 URL | https://chromewebstore.google.com/detail/trello-plugin-all-in-one/pnfioopglhebphfgkagefdmajgibahkk |
설명 | Tired of having too many extensions for Trello? Add missing features in ONE Chrome extension: Card age, number, count and lable name |
파일 크기 | 339 KB |
설치 횟수 | 8,758 |
현재 버전 | 2.0.0 |
최근 업데이트 | 2023-11-07 |
출시 날짜 | 2019-04-27 |
평점 | 3.92/5 총 13 개의 평점 |
개발자 | Derrick Qin |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/derrickqin/trello-plugin-all-in-one |
도움말 페이지 URL | https://github.com/derrickqin/trello-plugin-all-in-one/issues |
개인정보 보호 정책 페이지 URL | https://github.com/derrickqin/trello-plugin-all-in-one/blob/main/privacy-policy.md |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Trello plugin all-in-one - Truello", "short_name": "Truello", "version": "2.0.0", "description": "Tired of having too many extensions for Trello? Add missing features in ONE Chrome extension: Card age, number, count and lable name", "author": "Derrick Qin", "permissions": [ "tabs", "storage", "scripting" ], "content_scripts": [ { "js": [ "thirdPartyLib\/moment.js", "truello.js" ], "run_at": "document_idle", "matches": [ "https:\/\/trello.com\/*" ] } ], "background": { "service_worker": "background.js" }, "options_ui": { "page": "options.html" } } |