Git Kanban Enhanced Self Hosted

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

什么是Git Kanban Enhanced Self Hosted?

Git Kanban Enhanced Self Hosted是由funktechno开发的Chrome扩展程序,该扩展的主要功能是“Kanban extensions for self hosted github, gitlab, bitbucket, and gitea”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Git Kanban Enhanced Self Hosted扩展crx文件

下载Git Kanban Enhanced Self Hosted扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Git Kanban Enhanced Self Hosted Git Kanban Enhanced Self Hosted
ID ambmbdjjhloinbjadfgfmenihmfmahmk
官方URL https://chromewebstore.google.com/detail/git-kanban-enhanced-self/ambmbdjjhloinbjadfgfmenihmfmahmk
简介 Kanban extensions for self hosted github, gitlab, bitbucket, and gitea
文件大小 191 KB
安装次数 40
当前版本 0.0.7
更新时间 2019-11-06
上架时间 2019-11-03
评分 5.00/5 共1次评分
开发者 funktechno
付费类型 free
扩展官网 https://github.com/funktechno/git-kanban-enhanced-extension
帮助页面URL https://github.com/funktechno/git-kanban-enhanced-extension/blob/master/CHANGELOG
支持的语言 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'"
}