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文件
下載Gmail Kanban擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | lbedfpnhebkdgelkicpjfegneocfapdo |
| 官方網址 | 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"
}
} | |