Gmail Kanban
Simple browser extension Kanban tool for Gmail users.
Gmail Kanban란 무엇입니까?
Gmail Kanban은(는) hyojin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simple browser extension Kanban tool for Gmail users."입니다.
확장 프로그램 스크린샷
Gmail Kanban 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
You can create a task card from your gmail. Just click "Add to Kanban" button on your gmail. - It's very simple & free. - You don't need to worry about your privacy. All data of your e-mail and card is stored in your local storage only. - Open source. https://github.com/hyojin/GmailKanban #Change log v0.1.8 - Add confirmation dialog when removing a card list v0.1.7 - Bug fix v0.1.6 - Bug fix v0.1.5 - Not only from gmail also you can add a task card directly. - You can open your Kanban board to click the icon in the toolbar.
확장 프로그램 기본 정보
이름 | Gmail Kanban |
ID | lbedfpnhebkdgelkicpjfegneocfapdo |
공식 URL | https://chromewebstore.google.com/detail/gmail-kanban/lbedfpnhebkdgelkicpjfegneocfapdo |
설명 | Simple browser extension Kanban tool for Gmail users. |
파일 크기 | 628 KB |
설치 횟수 | 380 |
현재 버전 | 0.1.8 |
최근 업데이트 | 2017-03-13 |
출시 날짜 | 2017-03-12 |
평점 | 2.00/5 총 3 개의 평점 |
개발자 | hyojin |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/hyojin/GmailKanban |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Gmail Kanban", "description": "Simple browser extension Kanban tool for Gmail users.", "version": "0.1.8", "author": "Hyojin Kwak", "homepage_url": "https:\/\/github.com\/hyojin\/GmailKanban#readme", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "tabs", "unlimitedStorage", "https:\/\/mail.google.com\/*" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "content.js" ] } ], "browser_action": { "default_icon": { "19": "icons\/icon19.png", "38": "icons\/icon38.png" }, "default_title": "Gmail Kanban", "default_popup": "popup.html" } } |