Git Draw
Allows you to draw in your GitHub heatmap.
Was ist Git Draw?
Git Draw ist eine Chrome-Erweiterung, die von ben174 entwickelt wurde, und ihr Hauptmerkmal ist "Allows you to draw in your GitHub heatmap.".
Erweiterungsscreenshots
Git Draw-Erweiterungs-CRX-Datei herunterladen
Laden Sie Git Draw-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | aapcmdackhlfobmkcpplkjpfceihngkh |
| Offizielle URL | https://chrome.google.com/webstore/detail/git-draw/aapcmdackhlfobmkcpplkjpfceihngkh |
| Beschreibung | Allows you to draw in your GitHub heatmap. |
| Dateigröße | 50.9 KB |
| Installationsanzahl | 416 |
| Aktuelle Version | 1.0.1 |
| Letztes Update | 2016-01-21 |
| Veröffentlichungsdatum | 2016-01-21 |
| Bewertung | 2.92/5 Insgesamt 12 Bewertungen |
| Entwickler | ben174 |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
]
}
]
} | |