Trello Design
Change the design of Trello. Provides extensions that are compatible with the new Trello.
Trello Design란 무엇입니까?
Trello Design은(는) Shin LLC에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Change the design of Trello. Provides extensions that are compatible with the new Trello."입니다.
확장 프로그램 스크린샷
Trello Design 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
For example, you can display the label color and card number. Quick Guide: https://github.com/shin-dev/trello-design/wiki ---- Version 1.2.0 New Features ・Line height adjustment at card details. https://github.com/shin-dev/trello-design/wiki#line-height-px--v120 ・Blank line height adjustment at card details. https://github.com/shin-dev/trello-design/wiki#blank-line-height-px--v120 ・Show title and url copy buttons at card details. https://github.com/shin-dev/trello-design/wiki#show-copy-button-on-card-detail--v120 Fixed ・Wasn't closed Span tag at card number. ---- Version 1.1.0 New Features ・Hide card cover on list. ・Resize card details window. Fixed ・Operation correction on non-compliant sites. ・Fixed reset behavior. ---- Version 1.0.0 New Features ・Apply label to card color. ・Display card number.
확장 프로그램 기본 정보
이름 | Trello Design |
ID | bddemgibaehjbclgpppopnlcaohlikki |
공식 URL | https://chromewebstore.google.com/detail/trello-design/bddemgibaehjbclgpppopnlcaohlikki |
설명 | Change the design of Trello. Provides extensions that are compatible with the new Trello. |
파일 크기 | 109 KB |
설치 횟수 | 21 |
현재 버전 | 1.2.0 |
최근 업데이트 | 2020-12-29 |
출시 날짜 | 2020-07-25 |
개발자 | Shin LLC |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/shin-dev/trello-design |
도움말 페이지 URL | https://github.com/shin-dev/trello-design/wiki |
지원되는 언어 | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Trello Design", "version": "1.2.0", "description": "Change the design of Trello. Provides extensions that are compatible with the new Trello.", "content_scripts": [ { "run_at": "document_idle", "matches": [ "https:\/\/trello.com\/*" ], "css": [ "scripts\/content.css" ], "js": [ "scripts\/content.js" ] } ], "icons": { "16": "assets\/images\/icon_16x16.png", "48": "assets\/images\/icon_48x48.png", "128": "assets\/images\/icon_128x128.png" }, "browser_action": { "default_icon": "assets\/images\/icon_32x32.png", "default_title": "Trello Design", "default_popup": "scripts\/popup.html" }, "permissions": [ "storage", "https:\/\/trello.com\/*" ] } |