Paint GitHub
This adds canvas for drawing a picture and inserting them in GitHub comment boxes.
Paint GitHubคืออะไร?
Paint GitHub เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mu-An Chiou และคุณลักษณะหลักของมันคือ "This adds canvas for drawing a picture and inserting them in GitHub comment boxes."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Paint GitHub
ดาวน์โหลดไฟล์ส่วนขยาย 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"
}
} | |