Gartic Phonebook
Lets you replace Gartic Phone's default avatars with custom images
Hvad er Gartic Phonebook?
Gartic Phonebook er en Chrome-udvidelse udviklet af gartic-phonebook-team, og dens hovedfunktion er "Lets you replace Gartic Phone's default avatars with custom images".
Udvidelsesskærmbilleder
Download Gartic Phonebook-udvidelses-CRX-fil
Download Gartic Phonebook-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | Gartic Phonebook |
ID | aaeibnbllijldnmmioleniagkoipglbk |
Officiel URL | https://chromewebstore.google.com/detail/gartic-phonebook/aaeibnbllijldnmmioleniagkoipglbk |
Beskrivelse | Lets you replace Gartic Phone's default avatars with custom images |
Filstørrelse | 185 KB |
Antal Installationer | 687 |
Nuværende Version | 1.1.0 |
Senest Opdateret | 2022-08-03 |
Udgivelsesdato | 2022-08-02 |
Bedømmelse | 5.00/5 Samlet 3 Bedømmelser |
Udvikler | gartic-phonebook-team |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/TheIcyStar/Gartic-Phonebook |
Hjælpeside-URL | https://github.com/TheIcyStar/Gartic-Phonebook/issues |
Understøttede Sprog | 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" ] } |