Minikan

Minimal Kanban-like task manager.

Qu'est-ce que Minikan ?

Minikan est une extension Chrome développée par Neil Van Aliño, et sa fonction principale est "Minimal Kanban-like task manager.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Minikan

Téléchargez les fichiers d'extension Minikan au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Minikan Minikan
ID dphkgaloabgpiaobcjhilcldiikljenb
URL Officiel https://chromewebstore.google.com/detail/minikan/dphkgaloabgpiaobcjhilcldiikljenb
Description Minimal Kanban-like task manager.
Taille du Fichier 115 KB
Nombre d'Installations 40
Version Actuelle 1.4
Dernière Mise à Jour 2021-05-24
Date de Publication 2021-04-21
Évaluation 5.00/5 Total 1 Évaluations
Développeur Neil Van Aliño
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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'"
}