Minikan

Minimal Kanban-like task manager.

Minikanคืออะไร?

Minikan เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Neil Van Aliño และคุณลักษณะหลักของมันคือ "Minimal Kanban-like task manager."

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

screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Minikan ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Features
-Popup Kanban board
-4 columns: Todo, On hold, In progress, Done
-Add color to task/note cards (useful for grouping related tasks or setting priorities)

Why?
-Never leave the web page you are in or switch to another tab just to update your notes/tasks list

Getting Started
1) Just press ALT + Q to view your board.

Note: Board does not show within empty 'New Tab' tabs (restriction by Chrome). Must be in a loaded web page.                    

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

ชื่อ Minikan Minikan
ID dphkgaloabgpiaobcjhilcldiikljenb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/minikan/dphkgaloabgpiaobcjhilcldiikljenb
คำอธิบาย Minimal Kanban-like task manager.
ขนาดไฟล์ 115 KB
จำนวนการติดตั้ง 40
เวอร์ชันปัจจุบัน 1.4
อัปเดตครั้งล่าสุด 2021-05-24
วันที่เผยแพร่ 2021-04-21
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Neil Van Aliño
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Minikan",
    "description": "Minimal Kanban-like task manager.",
    "version": "1.4",
    "manifest_version": 2,
    "permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "ui\/popup.html"
    },
    "commands": {
        "open-minikan": {
            "suggested_key": {
                "default": "Alt+Q",
                "mac": "Command+Q"
            },
            "description": "Opens Minikan modal."
        }
    },
    "web_accessible_resources": [
        "dist\/index.html"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}