Minikan

Minimal Kanban-like task manager.

Minikanとは何ですか?

MinikanはNeil Van Aliñoによって開発されたChromeの拡張機能で、その主な機能は「Minimal Kanban-like task manager.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Minikan拡張機能のCRXファイルをダウンロード

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
Eメール [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'"
}