GitHub Emoji
A chrome extension for the github emoji picker with fun.
GitHub Emojiคืออะไร?
GitHub Emoji เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "A chrome extension for the github emoji picker with fun."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GitHub Emoji
ดาวน์โหลดไฟล์ส่วนขยาย GitHub Emoji ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
See https://github.com/FishPlusOrange/github-emoji for details.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | GitHub Emoji |
ID | pfhcnffadoajdcedindnjcladkokgfpo |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/github-emoji/pfhcnffadoajdcedindnjcladkokgfpo |
คำอธิบาย | A chrome extension for the github emoji picker with fun. |
ขนาดไฟล์ | 907 KB |
จำนวนการติดตั้ง | 37 |
เวอร์ชันปัจจุบัน | 1.1.1 |
อัปเดตครั้งล่าสุด | 2020-03-30 |
วันที่เผยแพร่ | 2020-03-30 |
ผู้พัฒนา | Unknown |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub Emoji", "version": "1.1.1", "manifest_version": 2, "description": "A chrome extension for the github emoji picker with fun.", "homepage_url": "https:\/\/github.com\/FishPlusOrange\/github-emoji", "icons": { "16": "images\/octocat.png", "48": "images\/octocat.png", "128": "images\/octocat.png" }, "background": { "scripts": [ "scripts\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/github.com\/*", "*:\/\/gist.github.com\/*" ], "js": [ "scripts\/content-script.js" ], "run_at": "document_end" } ], "page_action": { "default_title": "GitHub Emoji", "default_popup": "popup.html" } } |