Gartic Phonebook
Lets you replace Gartic Phone's default avatars with custom images
Cos'è Gartic Phonebook?
Gartic Phonebook è un'estensione di Chrome sviluppata da gartic-phonebook-team, e la sua funzione principale è "Lets you replace Gartic Phone's default avatars with custom images".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Gartic Phonebook
Scarica i file di estensione Gartic Phonebook in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Gartic Phonebook |
ID | aaeibnbllijldnmmioleniagkoipglbk |
URL Ufficiale | https://chromewebstore.google.com/detail/gartic-phonebook/aaeibnbllijldnmmioleniagkoipglbk |
Descrizione | Lets you replace Gartic Phone's default avatars with custom images |
Dimensione del File | 185 KB |
Conteggio Installazioni | 687 |
Versione Corrente | 1.1.0 |
Ultimo Aggiornamento | 2022-08-03 |
Data di Pubblicazione | 2022-08-02 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | gartic-phonebook-team |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/TheIcyStar/Gartic-Phonebook |
URL della Pagina di Aiuto | https://github.com/TheIcyStar/Gartic-Phonebook/issues |
Lingue Supportate | 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" ] } |