GitMeme
Easily add memes to your Github comments by simply typing a word after a forward slash, like /shipit
GitMemeคืออะไร?
GitMeme เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://gitme.me และคุณลักษณะหลักของมันคือ "Easily add memes to your Github comments by simply typing a word after a forward slash, like /shipit"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GitMeme
ดาวน์โหลดไฟล์ส่วนขยาย GitMeme ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Gitmeme brings the fun back to Github. Seamlessly add GIFs and meme images to your pull request comments and descriptions by just typing a keyword. For example, type "/shipit" and a gif of a big ship is inserted, or "/goodjob" to let the developer know how awesome she is! Gitmeme integrates with Giphy to find you fun memes, and also builds a community of popular images. It remembers your favorite images, and you can add new images to really express yourself. It also remembers images made by others in your company or open source community, so you are suggested images from those around you, allowing for fun in-jokes on your team.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | GitMeme |
ID | bjpibkoafohcjghgpbiinhfoobmbijcc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/gitmeme/bjpibkoafohcjghgpbiinhfoobmbijcc |
คำอธิบาย | Easily add memes to your Github comments by simply typing a word after a forward slash, like /shipit |
ขนาดไฟล์ | 308 KB |
จำนวนการติดตั้ง | 102 |
เวอร์ชันปัจจุบัน | 2.2 |
อัปเดตครั้งล่าสุด | 2023-12-03 |
วันที่เผยแพร่ | 2019-11-12 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | https://gitme.me |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://gitme.me |
URL หน้านโยบายความเป็นส่วนตัว | https://chofter.com/privacy_policy.html |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitMeme", "version": "2.2", "description": "Easily add memes to your Github comments by simply typing a word after a forward slash, like \/shipit", "manifest_version": 3, "permissions": [ "activeTab", "identity", "storage" ], "host_permissions": [ "https:\/\/gitme.me\/*", "https:\/\/api.giphy.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/*.github.com\/*", "https:\/\/github.com\/*", "https:\/\/git.musta.ch\/*" ], "css": [ "build\/style.css" ], "js": [ "build\/contentScript.js" ] } ], "action": { "default_popup": "popup\/index.html" }, "web_accessible_resources": [ { "resources": [ "assets\/selectedButton.png", "assets\/collapseButton.png", "assets\/expandButton.png", "assets\/icon-48x48.png", "popup\/index.html" ], "matches": [ "*:\/\/*\/*" ] } ], "minimum_chrome_version": "93", "background": { "service_worker": "build\/service_worker.js" }, "icons": { "16": "assets\/icon-16x16.png", "48": "assets\/icon-48x48.png", "128": "assets\/icon-128x128.png" }, "applications": { "gecko": { "id": "[email protected]" } } } |