Minikan

Minimal Kanban-like task manager.

What is Minikan?

Minikan is a Chrome extension developed by Neil Van Aliño, and its main feature is "Minimal Kanban-like task manager.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Minikan Extension CRX File

Download Minikan extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Minikan Minikan
ID dphkgaloabgpiaobcjhilcldiikljenb
Official URL https://chromewebstore.google.com/detail/minikan/dphkgaloabgpiaobcjhilcldiikljenb
Description Minimal Kanban-like task manager.
File Size 115 KB
Installation Count 40
Current Version 1.4
Last Updated 2021-05-24
Publish Date 2021-04-21
Rating 5.00/5 Total 1 Ratings
Developer Neil Van Aliño
Email [email protected]
Payment Type free
Supported Languages 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'"
}