Gartic Phonebook
Lets you replace Gartic Phone's default avatars with custom images
Gartic Phonebookคืออะไร?
Gartic Phonebook เป็นส่วนขยายของ Chrome ที่พัฒนาโดย gartic-phonebook-team และคุณลักษณะหลักของมันคือ "Lets you replace Gartic Phone's default avatars with custom images"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gartic Phonebook
ดาวน์โหลดไฟล์ส่วนขยาย Gartic Phonebook ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
A Chrome extension that sets custom avatars for your Gartic Phone games! Set a custom image to display for each user in your Gartic Phone game, or even add a small note to display under their name. Ideal for streamers, content creators, or for those who want to see their friends' awesome avatars. Gartic Phonebook is open source! Find the project on GitHub: https://github.com/TheIcyStar/Gartic-Phonebook
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Gartic Phonebook |
ID | aaeibnbllijldnmmioleniagkoipglbk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/gartic-phonebook/aaeibnbllijldnmmioleniagkoipglbk |
คำอธิบาย | Lets you replace Gartic Phone's default avatars with custom images |
ขนาดไฟล์ | 185 KB |
จำนวนการติดตั้ง | 687 |
เวอร์ชันปัจจุบัน | 1.1.0 |
อัปเดตครั้งล่าสุด | 2022-08-03 |
วันที่เผยแพร่ | 2022-08-02 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | gartic-phonebook-team |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/TheIcyStar/Gartic-Phonebook |
URL หน้าช่วยเหลือ | https://github.com/TheIcyStar/Gartic-Phonebook/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Lets you replace Gartic Phone's default avatars with custom images", "version": "1.1.0", "manifest_version": 3, "name": "Gartic Phonebook", "action": { "default_popup": "popup.html", "default_icon": { "16": "icon16.png", "32": "icon32.png", "128": "icon128.png" } }, "icons": { "16": "icon16.png", "32": "icon32.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/garticphone.com\/*" ], "js": [ "contentScript.bundle.js" ] } ], "web_accessible_resources": [ { "resources": [ "content.styles.css", "icon128.png", "icon32.png", "placeholder-avatar.png" ], "matches": [ "https:\/\/garticphone.com\/*" ] } ], "background": { "service_worker": "background.bundle.js" }, "permissions": [ "storage", "unlimitedStorage" ] } |