Github Enhanced Project Board

An enhanced UI for Github project boards

Github Enhanced Project Board란 무엇입니까?

Github Enhanced Project Board은(는) Bluehouse Group에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An enhanced UI for Github project boards"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Github Enhanced Project Board 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        An extension to improve the usability of Github project boards. The columns will become responsive and will not overflow off screen. The add column button is moved up to the controls row. There is a new issue button added to the controls. Clicking on issue title will open issue in new window instead of showing summary view.                    

확장 프로그램 기본 정보

이름 Github Enhanced Project Board Github Enhanced Project Board
ID eidmccobchlljnlophmcjgmimneegidp
공식 URL https://chromewebstore.google.com/detail/github-enhanced-project-b/eidmccobchlljnlophmcjgmimneegidp
설명 An enhanced UI for Github project boards
파일 크기 82.66 KB
설치 횟수 80
현재 버전 1.4.1
최근 업데이트 2019-04-07
출시 날짜 2019-04-06
평점 5.00/5 총 1 개의 평점
개발자 Bluehouse Group
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Enhanced Project Board",
    "description": "An enhanced UI for Github project boards",
    "version": "1.4.1",
    "page_action": [],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.github.com\/*",
                "https:\/\/*.github.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "github.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/github.png"
    ],
    "permissions": [
        "tabs"
    ],
    "icons": {
        "32": "images\/github.png"
    }
}