Gartic Phonebook
Lets you replace Gartic Phone's default avatars with custom images
Was ist Gartic Phonebook?
Gartic Phonebook ist eine Chrome-Erweiterung, die von gartic-phonebook-team entwickelt wurde, und ihr Hauptmerkmal ist "Lets you replace Gartic Phone's default avatars with custom images".
Erweiterungsscreenshots
Gartic Phonebook-Erweiterungs-CRX-Datei herunterladen
Laden Sie Gartic Phonebook-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Gartic Phonebook |
ID | aaeibnbllijldnmmioleniagkoipglbk |
Offizielle URL | https://chromewebstore.google.com/detail/gartic-phonebook/aaeibnbllijldnmmioleniagkoipglbk |
Beschreibung | Lets you replace Gartic Phone's default avatars with custom images |
Dateigröße | 185 KB |
Installationsanzahl | 687 |
Aktuelle Version | 1.1.0 |
Letztes Update | 2022-08-03 |
Veröffentlichungsdatum | 2022-08-02 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | gartic-phonebook-team |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/TheIcyStar/Gartic-Phonebook |
Hilfeseite URL | https://github.com/TheIcyStar/Gartic-Phonebook/issues |
Unterstützte Sprachen | 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" ] } |