Gartic Phonebook
Lets you replace Gartic Phone's default avatars with custom images
Co je Gartic Phonebook?
Gartic Phonebook je rozšíření Chrome vyvinuté gartic-phonebook-team, a jeho hlavní funkcí je „Lets you replace Gartic Phone's default avatars with custom images“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Gartic Phonebook
Stáhněte si soubory rozšíření Gartic Phonebook ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Gartic Phonebook |
ID | aaeibnbllijldnmmioleniagkoipglbk |
Oficiální URL | https://chromewebstore.google.com/detail/gartic-phonebook/aaeibnbllijldnmmioleniagkoipglbk |
Popis | Lets you replace Gartic Phone's default avatars with custom images |
Velikost souboru | 185 KB |
Počet instalací | 687 |
Aktuální Verze | 1.1.0 |
Poslední Aktualizace | 2022-08-03 |
Datum Vydání | 2022-08-02 |
Hodnocení | 5.00/5 Celkem 3 Hodnocení |
Vývojář | gartic-phonebook-team |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/TheIcyStar/Gartic-Phonebook |
URL Stránky Nápovědy | https://github.com/TheIcyStar/Gartic-Phonebook/issues |
Podporované Jazyky | 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" ] } |