Gartic Phonebook
Lets you replace Gartic Phone's default avatars with custom images
¿Qué es Gartic Phonebook?
Gartic Phonebook es una extensión de Chrome desarrollada por gartic-phonebook-team, y su función principal es "Lets you replace Gartic Phone's default avatars with custom images".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Gartic Phonebook
Descarga archivos de extensión Gartic Phonebook en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Gartic Phonebook |
ID | aaeibnbllijldnmmioleniagkoipglbk |
URL Oficial | https://chromewebstore.google.com/detail/gartic-phonebook/aaeibnbllijldnmmioleniagkoipglbk |
Descripción | Lets you replace Gartic Phone's default avatars with custom images |
Tamaño del Archivo | 185 KB |
Cantidad de Instalaciones | 687 |
Versión Actual | 1.1.0 |
Última Actualización | 2022-08-03 |
Fecha de Publicación | 2022-08-02 |
Calificación | 5.00/5 Total de 3 Calificaciones |
Desarrollador | gartic-phonebook-team |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/TheIcyStar/Gartic-Phonebook |
URL de la Página de Ayuda | https://github.com/TheIcyStar/Gartic-Phonebook/issues |
Idiomas Soportados | 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" ] } |