Paint GitHub
This adds canvas for drawing a picture and inserting them in GitHub comment boxes.
What is Paint GitHub?
Paint GitHub is a Chrome extension developed by Mu-An Chiou, and its main feature is "This adds canvas for drawing a picture and inserting them in GitHub comment boxes.".
Extension Screenshots
Download Paint GitHub Extension CRX File
Download Paint GitHub 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
Injects a "Draw" panel to GitHub's comment area so you can draw a helpful picture to be included in the comment!
Extension Basic Information
Name | Paint GitHub |
ID | dmcjbappfnlamankemdmmdjiecnclapl |
Official URL | https://chromewebstore.google.com/detail/paint-github/dmcjbappfnlamankemdmmdjiecnclapl |
Description | This adds canvas for drawing a picture and inserting them in GitHub comment boxes. |
File Size | 34.1 KB |
Installation Count | 203 |
Current Version | 0.3.0 |
Last Updated | 2019-11-27 |
Publish Date | 2019-11-26 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Mu-An Chiou |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |