Gartic Phonebook
Lets you replace Gartic Phone's default avatars with custom images
Gartic Phonebook là gì?
Gartic Phonebook là một tiện ích mở rộng Chrome được phát triển bởi gartic-phonebook-team, và tính năng chính của nó là "Lets you replace Gartic Phone's default avatars with custom images".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Gartic Phonebook
Tải xuống các tệp mở rộng Gartic Phonebook dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Gartic Phonebook |
ID | aaeibnbllijldnmmioleniagkoipglbk |
URL Chính Thức | https://chromewebstore.google.com/detail/gartic-phonebook/aaeibnbllijldnmmioleniagkoipglbk |
Mô tả | Lets you replace Gartic Phone's default avatars with custom images |
Kích Thước Tệp | 185 KB |
Số Lần Cài Đặt | 687 |
Phiên Bản Hiện Tại | 1.1.0 |
Cập Nhật Lần Cuối | 2022-08-03 |
Ngày Phát Hành | 2022-08-02 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | gartic-phonebook-team |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/TheIcyStar/Gartic-Phonebook |
URL Trang Trợ Giúp | https://github.com/TheIcyStar/Gartic-Phonebook/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |