Git Draw

Allows you to draw in your GitHub heatmap.

Что такое Git Draw?

Git Draw - это расширение Chrome, разработанное ben174, и его основная функция - "Allows you to draw in your GitHub heatmap.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Git Draw

Скачайте файлы расширений 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
Официальный 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"
            ]
        }
    ]
}