Paint GitHub
This adds canvas for drawing a picture and inserting them in GitHub comment boxes.
Was ist Paint GitHub?
Paint GitHub ist eine Chrome-Erweiterung, die von Mu-An Chiou entwickelt wurde, und ihr Hauptmerkmal ist "This adds canvas for drawing a picture and inserting them in GitHub comment boxes.".
Erweiterungsscreenshots
Paint GitHub-Erweiterungs-CRX-Datei herunterladen
Laden Sie Paint GitHub-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
Injects a "Draw" panel to GitHub's comment area so you can draw a helpful picture to be included in the comment! Grundlegende Informationen zur Erweiterung
| Name | |
| ID | dmcjbappfnlamankemdmmdjiecnclapl |
| Offizielle URL | https://chromewebstore.google.com/detail/paint-github/dmcjbappfnlamankemdmmdjiecnclapl |
| Beschreibung | This adds canvas for drawing a picture and inserting them in GitHub comment boxes. |
| Dateigröße | 34.1 KB |
| Installationsanzahl | 203 |
| Aktuelle Version | 0.3.0 |
| Letztes Update | 2019-11-27 |
| Veröffentlichungsdatum | 2019-11-26 |
| Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
| Entwickler | Mu-An Chiou |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Paint GitHub",
"short_name": "paint-github",
"version": "0.3.0",
"manifest_version": 2,
"description": "This adds canvas for drawing a picture and inserting them in GitHub comment boxes.",
"homepage_url": "http:\/\/github.com\/muan\/paint-github",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*"
],
"css": [
"index.css"
],
"js": [
"inject.js"
]
}
],
"web_accessible_resources": [
"index.js",
"node_modules\/changedpi\/src\/index.js",
"paint-canvas-element.js"
],
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
}
} | |