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'"
}