Paint GitHub
This adds canvas for drawing a picture and inserting them in GitHub comment boxes.
什么是Paint GitHub?
Paint GitHub是由Mu-An Chiou开发的Chrome扩展程序,该扩展的主要功能是“This adds canvas for drawing a picture and inserting them in GitHub comment boxes.”。
扩展截图
下载Paint GitHub扩展crx文件
下载Paint GitHub扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Injects a "Draw" panel to GitHub's comment area so you can draw a helpful picture to be included in the comment! 扩展基本信息
| 名称 | |
| ID | dmcjbappfnlamankemdmmdjiecnclapl |
| 官方URL | https://chromewebstore.google.com/detail/paint-github/dmcjbappfnlamankemdmmdjiecnclapl |
| 简介 | This adds canvas for drawing a picture and inserting them in GitHub comment boxes. |
| 文件大小 | 34.1 KB |
| 安装次数 | 203 |
| 当前版本 | 0.3.0 |
| 更新时间 | 2019-11-27 |
| 上架时间 | 2019-11-26 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | Mu-An Chiou |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | 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"
}
} | |