Trello Card Counter
Card counters and card identifiers for easy collaboration and project management
Trello Card Counter란 무엇입니까?
Trello Card Counter은(는) Alex Benoit에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Card counters and card identifiers for easy collaboration and project management"입니다.
확장 프로그램 스크린샷
Trello Card Counter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
[recently updated, fully working] Trello Card Counter Plus tells you how many cards you have in your lists and board and gives the cards identifiers for easier collaboration and project management. Updated for Trello 2024.
확장 프로그램 기본 정보
이름 | Trello Card Counter |
ID | hepiaakjhimoagmpalbfoojemcnlnagn |
공식 URL | https://chromewebstore.google.com/detail/trello-card-counter/hepiaakjhimoagmpalbfoojemcnlnagn |
설명 | Card counters and card identifiers for easy collaboration and project management |
파일 크기 | 14.12 KB |
설치 횟수 | 20,000 |
현재 버전 | 3.0.0 |
최근 업데이트 | 2023-12-03 |
출시 날짜 | 2017-11-22 |
평점 | 3.93/5 총 27 개의 평점 |
개발자 | Alex Benoit |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://alexbenoit.me/ |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Trello Card Counter", "version": "3.0.0", "description": "Card counters and card identifiers for easy collaboration and project management", "permissions": [ "storage" ], "action": { "default_popup": "popup.html" }, "content_scripts": [ { "run_at": "document_idle", "matches": [ "https:\/\/trello.com\/b\/*" ], "js": [ "trello-override.js" ], "css": [ "trello-override.css" ] } ], "icons": { "128": "trelloext.png" } } |