GifHub
Insert GIFs from Giphy.com into GitHub comments
GifHubคืออะไร?
GifHub เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Andrew Levine และคุณลักษณะหลักของมันคือ "Insert GIFs from Giphy.com into GitHub comments"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GifHub
ดาวน์โหลดไฟล์ส่วนขยาย GifHub ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
GitHub is awesome. GIFs are awesome. 1.0.8 (May 24, 2016): Fix bug preventing button from showing when editing a comment that was just added on a diff. Thanks to Paul Molluzzo for the fix. 1.0.7 (April 24, 2016): Improve page detection to prevent issues on non GH or GH Enterprise sites 1.0.6 (April 20, 2016): Fix issue caused by change in GitHub's JS
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | lponagpckglibniamicamklhfkoebpeb |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/gifhub/lponagpckglibniamicamklhfkoebpeb |
คำอธิบาย | Insert GIFs from Giphy.com into GitHub comments |
ขนาดไฟล์ | 25.84 KB |
จำนวนการติดตั้ง | 452 |
เวอร์ชันปัจจุบัน | 1.0.8 |
อัปเดตครั้งล่าสุด | 2016-05-24 |
วันที่เผยแพร่ | 2016-05-24 |
คะแนน | 3.29/5 รวมทั้งหมด 7 คะแนน |
ผู้พัฒนา | Andrew Levine |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/DrewML/GifHub |
URL หน้าช่วยเหลือ | https://github.com/DrewML/GifHub/blob/master/README.md |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GifHub", "version": "1.0.8", "description": "Insert GIFs from Giphy.com into GitHub comments", "manifest_version": 2, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "inject.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ "bundle.js", "extension.css" ], "permissions": [ "https:\/\/api.giphy.com\/v1\/*" ], "background": { "scripts": [ "background.js" ], "peristent": false } } |