Minikan

Minimal Kanban-like task manager.

Minikan란 무엇입니까?

Minikan은(는) Neil Van Aliño에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Minimal Kanban-like task manager."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Minikan 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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'"
}