GIFs for GitHub
Easily search GIPHY to add a GIF into any GitHub comment box.
GIFs for GitHubคืออะไร?
GIFs for GitHub เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Nick Lockhart และคุณลักษณะหลักของมันคือ "Easily search GIPHY to add a GIF into any GitHub comment box."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GIFs for GitHub
ดาวน์โหลดไฟล์ส่วนขยาย GIFs for GitHub ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Do you simply *need* GIFs to express yourself in GitHub? All those pull requests, code reviews, issues, and comments... wouldn't life be easier if you could just search and add a GIF in the click of a button? Well, look no further. Now you can search GIPHY straight from any comment box in GitHub, and add a GIF to your wordy masterpiece in a matter of seconds. No more trying to find a GIF that's under 10MB, no more manual tab opening and searching, no more writing your own markdown — just living your best GIF life. How does it work? - Click the GIF button in the top right of your comment box - A GIPHY dropdown will appear on-screen so you can search for your purrfect GIF - Select your GIF, and it will appear wherever your cursor is in the text box - You're done! Send away See the website for more info.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | GIFs for GitHub |
ID | dkgjnpbipbdaoaadbdhpiokaemhlphep |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/gifs-for-github/dkgjnpbipbdaoaadbdhpiokaemhlphep |
คำอธิบาย | Easily search GIPHY to add a GIF into any GitHub comment box. |
ขนาดไฟล์ | 57.39 KB |
จำนวนการติดตั้ง | 11,607 |
เวอร์ชันปัจจุบัน | 24.1.18 |
อัปเดตครั้งล่าสุด | 2024-01-21 |
วันที่เผยแพร่ | 2019-12-16 |
คะแนน | 4.76/5 รวมทั้งหมด 29 คะแนน |
ผู้พัฒนา | Nick Lockhart |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/N1ck/gifs-for-github |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GIFs for GitHub", "version": "24.1.18", "description": "Easily search GIPHY to add a GIF into any GitHub comment box.", "browser_action": { "default_icon": "\/images\/icon128.png" }, "applications": { "gecko": { "id": "{443bc2e2-8fa9-44ec-828a-fd84c0664f8d}" } }, "permissions": [ "contextMenus", "activeTab", "https:\/\/api.giphy.com\/*" ], "optional_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "16": "\/images\/icon16.png", "48": "\/images\/icon48.png", "128": "\/images\/icon128.png" }, "background": { "scripts": [ "\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "https:\/\/gist.github.com\/*" ], "css": [ "\/style.css" ], "js": [ "\/main.js" ] } ], "web_accessible_resources": [ "\/images\/icon128.png", "\/images\/icon16.png", "\/images\/icon48.png", "\/images\/powered-by-giphy.png" ] } |