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!
擴展基本資訊
名稱 | Paint GitHub |
ID | dmcjbappfnlamankemdmmdjiecnclapl |
官方網址 | 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" } } |