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文件

下載Git Draw擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
            ]
        }
    ]
}