DCO GitHub UI

DCO signoff for GitHub UI

DCO GitHub UI란 무엇입니까?

DCO GitHub UI은(는) Scott Rigby에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "DCO signoff for GitHub UI"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

DCO GitHub UI 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This Chrome extension adds DCO Signed-off-by line to commits made with the GitHub browser UI.                    

확장 프로그램 기본 정보

이름 DCO GitHub UI DCO GitHub UI
ID onhgmjhnaeipfgacbglaphlmllkpoijo
공식 URL https://chromewebstore.google.com/detail/dco-github-ui/onhgmjhnaeipfgacbglaphlmllkpoijo
설명 DCO signoff for GitHub UI
파일 크기 20.58 KB
설치 횟수 203
현재 버전 1.1.0
최근 업데이트 2020-08-16
출시 날짜 2018-09-20
평점 4.00/5 총 1 개의 평점
개발자 Scott Rigby
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/scottrigby/dco-gh-ui
도움말 페이지 URL https://github.com/scottrigby/dco-gh-ui/blob/master/README.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "DCO GitHub UI",
    "version": "1.1.0",
    "description": "DCO signoff for GitHub UI",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "images\/dco-gh-ui-16.png",
        "32": "images\/dco-gh-ui-32.png",
        "48": "images\/dco-gh-ui-48.png",
        "96": "images\/dco-gh-ui-96.png",
        "128": "images\/dco-gh-ui-128.png"
    },
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ]
        }
    ]
}