Gmail Kanban

Simple browser extension Kanban tool for Gmail users.

Gmail Kanbanคืออะไร?

Gmail Kanban เป็นส่วนขยายของ Chrome ที่พัฒนาโดย hyojin และคุณลักษณะหลักของมันคือ "Simple browser extension Kanban tool for Gmail users."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gmail Kanban

ดาวน์โหลดไฟล์ส่วนขยาย 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Gmail Kanban 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"
    }
}