Board Summary for Trello
The Board Summary for Trello extension displays summary data for Trello boards and provides a mechanism for nesting boards.
Board Summary for Trello란 무엇입니까?
Board Summary for Trello은(는) BoardSummary에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The Board Summary for Trello extension displays summary data for Trello boards and provides a mechanism for nesting boards."입니다.
확장 프로그램 스크린샷
Board Summary for Trello 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The Board Summary for Trello extension retrieves and displays summary data for Trello boards. The board summary can include the number of active lists/cards in the board and a summary of due dates for cards in the board (past due/due now/due today/due soon). On board pages, the board summary data allows for creating nested boards, i.e. cards that reference other boards. Simply create a card whose description is the URL of another board, or use the add Nested Board button on the card edit page to pick an existing board or create a new board, and this card will be treated as an nested board. This method allows these cards to be usable in other browsers and mobile apps without this extension.
확장 프로그램 기본 정보
이름 | Board Summary for Trello |
ID | aelhmieiiecnjpaklhmbbefkgdpelobf |
공식 URL | https://chromewebstore.google.com/detail/board-summary-for-trello/aelhmieiiecnjpaklhmbbefkgdpelobf |
설명 | The Board Summary for Trello extension displays summary data for Trello boards and provides a mechanism for nesting boards. |
파일 크기 | 71.67 KB |
설치 횟수 | 2,427 |
현재 버전 | 1.9.6 |
최근 업데이트 | 2021-03-21 |
출시 날짜 | 2020-06-11 |
평점 | 4.75/5 총 20 개의 평점 |
개발자 | BoardSummary |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://boardsummary.gitlab.io/ |
도움말 페이지 URL | https://boardsummary.gitlab.io/BoardSummaryForTrelloChromeExtension/#support |
개인정보 보호 정책 페이지 URL | https://boardsummary.gitlab.io/BoardSummaryForTrelloChromeExtension/docs |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Board Summary for Trello", "description": "The Board Summary for Trello extension displays summary data for Trello boards and provides a mechanism for nesting boards.", "version": "1.9.6", "icons": { "128": "images\/icon-128.png", "48": "images\/icon-48.png", "32": "images\/icon-32.png", "19": "images\/icon-19.png", "16": "images\/icon-16.png" }, "options_ui": { "page": "options.html", "chrome_style": false }, "options_page": "options.html", "background": { "scripts": [ "scripts\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/trello.com\/*" ], "css": [ "styles\/boardSummary.css" ], "js": [ "scripts\/handlebars\/handlebars.runtime.min.js", "scripts\/templates.min.js", "scripts\/jquery\/jquery.min.js", "scripts\/boardSummary.js" ] } ], "web_accessible_resources": [ "images\/*.png" ], "page_action": { "default_icon": { "128": "images\/icon-128.png", "48": "images\/icon-48.png", "32": "images\/icon-32.png", "19": "images\/icon-19.png", "16": "images\/icon-16.png" } }, "permissions": [ "tabs", "storage", "webNavigation", "https:\/\/trello.com\/" ] } |