Trello To-do Notes
Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: / Apr 30
Trello To-do Notes란 무엇입니까?
Trello To-do Notes은(는) https://valerypopoff.ru/trello에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: / Apr 30"입니다.
확장 프로그램 스크린샷
Trello To-do Notes 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
How to use: open Trello cards in separate browser windows and click the extension icon * Removes visual noise leaving only checklists. * Highlights urgent tasks if you provide deadlines like this: / Apr 30
확장 프로그램 기본 정보
이름 | Trello To-do Notes |
ID | agdeebidnlidokgnnkhiiccefldilcjp |
공식 URL | https://chromewebstore.google.com/detail/trello-to-do-notes/agdeebidnlidokgnnkhiiccefldilcjp |
설명 | Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: / Apr 30 |
파일 크기 | 109 KB |
설치 횟수 | 1,099 |
현재 버전 | 0.9.8 |
최근 업데이트 | 2020-12-12 |
출시 날짜 | 2018-07-02 |
평점 | 4.36/5 총 11 개의 평점 |
개발자 | https://valerypopoff.ru/trello |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://valerypopoff.ru/trello |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Trello To-do Notes", "description": "Turns trello cards into a handy dashboard on your desktop. It highlights urgent tasks if you provide deadlines like this: \/ Apr 30", "version": "0.9.8", "permissions": [ "http:\/\/trello.com\/*", "https:\/\/trello.com\/*" ], "background": { "persistent": false, "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icon.png", "default_title": "Click to do the magic" }, "icons": { "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/trello.com\/*" ], "js": [ "jquery.js", "bowser.min.js", "script.js", "majic.js" ] } ], "web_accessible_resources": [ "color.css" ] } |