Git Draw

Allows you to draw in your GitHub heatmap.

Git Draw란 무엇입니까?

Git Draw은(는) ben174에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you to draw in your GitHub heatmap."입니다.

확장 프로그램 스크린샷

screenshot

Git Draw 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Allows you to freely draw on your GitHub heatmap. You can then export your drawing to a script containing a git commit log. Once you've run and pushed this script to a new repository, your commit heat map will match the drawing you made.                    

확장 프로그램 기본 정보

이름 Git Draw Git Draw
ID aapcmdackhlfobmkcpplkjpfceihngkh
공식 URL https://chrome.google.com/webstore/detail/git-draw/aapcmdackhlfobmkcpplkjpfceihngkh
설명 Allows you to draw in your GitHub heatmap.
파일 크기 50.9 KB
설치 횟수 416
현재 버전 1.0.1
최근 업데이트 2016-01-21
출시 날짜 2016-01-21
평점 2.92/5 총 12 개의 평점
개발자 ben174
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Git Draw",
    "version": "1.0.1",
    "manifest_version": 2,
    "description": "Allows you to draw in your GitHub heatmap.",
    "homepage_url": "http:\/\/www.bugben.com",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "contentSettings",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "src\/lib\/jquery-2.2.0.min.js",
                "src\/inject\/inject.js"
            ],
            "css": [
                "src\/css\/inject.css"
            ]
        }
    ]
}