Waffle Due Dates
Improves Waffle.io with recognition for due dates
Waffle Due Dates란 무엇입니까?
Waffle Due Dates은(는) Eli / Industry Dive에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Improves Waffle.io with recognition for due dates"입니다.
확장 프로그램 스크린샷
Waffle Due Dates 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Chrome extension that adds "due date" recognition to waffle.io. Simply add text to cards/issues like "Due 9/1 - Do a thing" or "Issue name blah blah (due 10/12/2016)" Cards with due dates in them have: - Get a special label indicating how far until they're due - If the card is due "soon" (defined as within 3 days) it gets highlighted with a clock icon. - Overdue cards get a warning icon - Column headers get a clock icon if there are any cards due soon within the column. Source available at https://github.com/industrydive/waffle.io-due-dates
확장 프로그램 기본 정보
이름 | Waffle Due Dates |
ID | ofhomfjdmacholiopnkhaeahibadabbk |
공식 URL | https://chromewebstore.google.com/detail/waffle-due-dates/ofhomfjdmacholiopnkhaeahibadabbk |
설명 | Improves Waffle.io with recognition for due dates |
파일 크기 | 83.12 KB |
설치 횟수 | 31 |
현재 버전 | 0.1.4 |
최근 업데이트 | 2016-09-27 |
출시 날짜 | 2016-09-27 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Eli / Industry Dive |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Waffle Due Dates", "description": "Improves Waffle.io with recognition for due dates", "version": "0.1.4", "permissions": [ "https:\/\/waffle.io\/*", "http:\/\/waffle.io\/*" ], "icons": { "128": "waffleclock128.png", "48": "waffleclock48.png", "16": "waffleclock16.png" }, "content_scripts": [ { "css": [ "css\/styles.css" ], "js": [ "js\/jquery-3.1.0.min.js", "js\/moment.min.js", "js\/content.js" ], "matches": [ "https:\/\/waffle.io\/*", "http:\/\/waffle.io\/*" ], "run_at": "document_start" } ] } |