Git Kanban Enhanced Self Hosted

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

Was ist Git Kanban Enhanced Self Hosted?

Git Kanban Enhanced Self Hosted ist eine Chrome-Erweiterung, die von funktechno entwickelt wurde, und ihr Hauptmerkmal ist "Kanban extensions for self hosted github, gitlab, bitbucket, and gitea".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Git Kanban Enhanced Self Hosted-Erweiterungs-CRX-Datei herunterladen

Laden Sie Git Kanban Enhanced Self Hosted-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        (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.                    

Grundlegende Informationen zur Erweiterung

Name Git Kanban Enhanced Self Hosted Git Kanban Enhanced Self Hosted
ID ambmbdjjhloinbjadfgfmenihmfmahmk
Offizielle URL https://chromewebstore.google.com/detail/git-kanban-enhanced-self/ambmbdjjhloinbjadfgfmenihmfmahmk
Beschreibung Kanban extensions for self hosted github, gitlab, bitbucket, and gitea
Dateigröße 191 KB
Installationsanzahl 40
Aktuelle Version 0.0.7
Letztes Update 2019-11-06
Veröffentlichungsdatum 2019-11-03
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler funktechno
Zahlungsart free
Erweiterungswebsite https://github.com/funktechno/git-kanban-enhanced-extension
Hilfeseite URL https://github.com/funktechno/git-kanban-enhanced-extension/blob/master/CHANGELOG
Unterstützte Sprachen 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'"
}