GitHub Selfies
Selfies! For GitHub! Hooray!
GitHub Selfiesคืออะไร?
GitHub Selfies เป็นส่วนขยายของ Chrome ที่พัฒนาโดย github-selfies-maintainers และคุณลักษณะหลักของมันคือ "Selfies! For GitHub! Hooray!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GitHub Selfies
ดาวน์โหลดไฟล์ส่วนขยาย GitHub Selfies ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
GitHub Selfies allows you to easily insert selfies into your pull requests, issues, and comments from your webcam! Just one click and you'll be happily spamming your coworkers and fellow open source contributors with way too many pictures of your glorious mug.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | GitHub Selfies |
ID | ldnpkdnkgkogfnahcnldaedcoadjbkbl |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/github-selfies/ldnpkdnkgkogfnahcnldaedcoadjbkbl |
คำอธิบาย | Selfies! For GitHub! Hooray! |
ขนาดไฟล์ | 65.13 KB |
จำนวนการติดตั้ง | 381 |
เวอร์ชันปัจจุบัน | 2.0.7 |
อัปเดตครั้งล่าสุด | 2020-07-12 |
วันที่เผยแพร่ | 2018-12-29 |
คะแนน | 4.67/5 รวมทั้งหมด 24 คะแนน |
ผู้พัฒนา | github-selfies-maintainers |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/thieman/github-selfies |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GitHub Selfies", "description": "Selfies! For GitHub! Hooray!", "version": "2.0.7", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "webRequest", "webRequestBlocking", "*:\/\/github.com\/*", "https:\/\/api.imgur.com\/3\/image" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "js": [ "jquery.min.js", "b64.js", "NeuQuant.js", "LZWEncoder.js", "GIFEncoder.js", "selfie-base.js", "selfie.js" ], "css": [ "selfie.css" ], "matches": [ "*:\/\/github.com\/*" ] } ], "web_accessible_resources": [ "jquery-1.10.1.min.map", "new-issue.css", "issues.css" ] } |