Gartic Phonebook
Lets you replace Gartic Phone's default avatars with custom images
什么是Gartic Phonebook?
Gartic Phonebook是由gartic-phonebook-team开发的Chrome扩展程序,该扩展的主要功能是“Lets you replace Gartic Phone's default avatars with custom images”。
扩展截图
下载Gartic Phonebook扩展crx文件
下载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" ] } |