Git Draw

Allows you to draw in your GitHub heatmap.

What is Git Draw?

Git Draw is a Chrome extension developed by ben174, and its main feature is "Allows you to draw in your GitHub heatmap.".

Extension Screenshots

screenshot

Download Git Draw Extension CRX File

Download Git Draw extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Git Draw Git Draw
ID aapcmdackhlfobmkcpplkjpfceihngkh
Official URL https://chrome.google.com/webstore/detail/git-draw/aapcmdackhlfobmkcpplkjpfceihngkh
Description Allows you to draw in your GitHub heatmap.
File Size 50.9 KB
Installation Count 416
Current Version 1.0.1
Last Updated 2016-01-21
Publish Date 2016-01-21
Rating 2.92/5 Total 12 Ratings
Developer ben174
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}