gitphy
Put gifs in your Github issues and pull requests without leaving the textarea
gitphyคืออะไร?
gitphy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://kevinformatics.com และคุณลักษณะหลักของมันคือ "Put gifs in your Github issues and pull requests without leaving the textarea"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย gitphy
ดาวน์โหลดไฟล์ส่วนขยาย gitphy ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Extends the markdown image syntax by allowing you to search for gifs right from Github textareas. Use the syntax ![](gif:) to search Giphy for gifs. Open source at: https://github.com/kevinwuhoo/gitphy.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | gitphy |
ID | kbnbfpmphfpcndlokabhemafnjhkcffc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/gitphy/kbnbfpmphfpcndlokabhemafnjhkcffc |
คำอธิบาย | Put gifs in your Github issues and pull requests without leaving the textarea |
ขนาดไฟล์ | 86.94 KB |
จำนวนการติดตั้ง | 38 |
เวอร์ชันปัจจุบัน | 1.1.1 |
อัปเดตครั้งล่าสุด | 2020-10-15 |
วันที่เผยแพร่ | 2020-07-24 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | https://kevinformatics.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://kevinformatics.com/gitphy |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "gitphy", "version": "1.1.1", "manifest_version": 2, "description": "Put gifs in your Github issues and pull requests without leaving the textarea", "author": "Kevin Wu", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "css": [ "index.css" ], "js": [ "index.js" ], "run_at": "document_end" } ], "permissions": [ "https:\/\/github.com\/*", "https:\/\/*.giphy.com\/*" ], "web_accessible_resources": [ "giphy-attribution.png" ] } |