Trello My Cards Prioritization
My Cards prioritization.
Trello My Cards Prioritization란 무엇입니까?
Trello My Cards Prioritization은(는) https://www.netmagnet.cz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "My Cards prioritization."입니다.
확장 프로그램 스크린샷
Trello My Cards Prioritization 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Visual prioritization of My Cards page list in Trello. NOT in a standard board view. Extension changes card's visual appearance based on its presence in a list: Ideas: light transparency Todo: without change Doing: highlighted To Deploy: highlighted Done: hidden Postponed: heavy transparency Cancelled: hidden These list names can be substrings, so cards in list "Done 2019-09-19" will be hidden. Updates in v1.0.0: - correctly detect page and content change so this extension works again :) Updates in v1.1.1: - Add "To Deploy" list name - Fix css class names
확장 프로그램 기본 정보
이름 | Trello My Cards Prioritization |
ID | bpbkpegngbkknmghhjbeekjdphjhkdif |
공식 URL | https://chromewebstore.google.com/detail/trello-my-cards-prioritiz/bpbkpegngbkknmghhjbeekjdphjhkdif |
설명 | My Cards prioritization. |
파일 크기 | 53.05 KB |
설치 횟수 | 19 |
현재 버전 | 1.1.1 |
최근 업데이트 | 2019-12-11 |
출시 날짜 | 2019-12-11 |
개발자 | https://www.netmagnet.cz |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://www.netmagnet.cz |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Trello My Cards Prioritization", "short_name": "Trello My Cards Prio", "description": "My Cards prioritization.", "version": "1.1.1", "author": "Tomas Kouba", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "https:\/\/trello.com\/*" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/trello.com\/*" ], "js": [ "jquery-3.2.1.min.js", "bootstrap.js", "mycards.js" ] } ], "web_accessible_resources": [ "style.css" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |