Git Kanban Enhanced Self Hosted

Kanban extensions for self hosted github, gitlab, bitbucket, and gitea

¿Qué es Git Kanban Enhanced Self Hosted?

Git Kanban Enhanced Self Hosted es una extensión de Chrome desarrollada por funktechno, y su función principal es "Kanban extensions for self hosted github, gitlab, bitbucket, and gitea".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Git Kanban Enhanced Self Hosted

Descarga archivos de extensión Git Kanban Enhanced Self Hosted en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        (In-Progress) Kanban enhanced extensions for github, gitlab, bitbucket, and gitea. !!Opensourced!!

This plugin is meant for self hosted git hosts with custom urls. Please WHITE LIST rather than enabling all urls. 

Simple version for non-self hosted is https://chrome.google.com/webstore/detail/git-kanban-enhanced/ehoibkdpdgjcjnnalkbiidajafoimnaa

Root level hosted git servers are supported at this time not subdirectory. e.g. git.domain.tld not domain.tld/git.

Currently only shows the kanban menu button in most remote git repo clients. Kanban is fully supported in gitea now. Check https://github.com/funktechno/git-kanban-enhanced-extension/blob/master/readme.md for latest updates.                    

Información Básica de la Extensión

Nombre Git Kanban Enhanced Self Hosted Git Kanban Enhanced Self Hosted
ID ambmbdjjhloinbjadfgfmenihmfmahmk
URL Oficial https://chromewebstore.google.com/detail/git-kanban-enhanced-self/ambmbdjjhloinbjadfgfmenihmfmahmk
Descripción Kanban extensions for self hosted github, gitlab, bitbucket, and gitea
Tamaño del Archivo 191 KB
Cantidad de Instalaciones 40
Versión Actual 0.0.7
Última Actualización 2019-11-06
Fecha de Publicación 2019-11-03
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador funktechno
Tipo de Pago free
Sitio Web de la Extensión https://github.com/funktechno/git-kanban-enhanced-extension
URL de la Página de Ayuda https://github.com/funktechno/git-kanban-enhanced-extension/blob/master/CHANGELOG
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Git Kanban Enhanced Self Hosted",
    "short_name": "GKESH",
    "version": "0.0.7",
    "description": "Kanban extensions for self hosted github, gitlab, bitbucket, and gitea",
    "author": "http:\/\/github.com\/lastlink",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/16.png",
        "128": "icons\/128.png"
    },
    "homepage_url": "https:\/\/github.com\/funktechno\/git-kanban-enhanced-extension",
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "permissions": [
        "",
        "contextMenus",
        "storage",
        "webNavigation"
    ],
    "browser_action": {
        "default_title": "Options Button",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "js\/inject.js"
            ],
            "exclude_matches": [
                "*:\/\/extensions\/*"
            ],
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "all_frames": true
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}