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
电子邮箱 [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'"
}