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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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