Gartic Phonebook

Lets you replace Gartic Phone's default avatars with custom images

Qu'est-ce que Gartic Phonebook ?

Gartic Phonebook est une extension Chrome développée par gartic-phonebook-team, et sa fonction principale est "Lets you replace Gartic Phone's default avatars with custom images".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Gartic Phonebook

Téléchargez les fichiers d'extension Gartic Phonebook au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Gartic Phonebook Gartic Phonebook
ID aaeibnbllijldnmmioleniagkoipglbk
URL Officiel https://chromewebstore.google.com/detail/gartic-phonebook/aaeibnbllijldnmmioleniagkoipglbk
Description Lets you replace Gartic Phone's default avatars with custom images
Taille du Fichier 185 KB
Nombre d'Installations 687
Version Actuelle 1.1.0
Dernière Mise à Jour 2022-08-03
Date de Publication 2022-08-02
Évaluation 5.00/5 Total 3 Évaluations
Développeur gartic-phonebook-team
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/TheIcyStar/Gartic-Phonebook
URL de la Page d'Aide https://github.com/TheIcyStar/Gartic-Phonebook/issues
Langues Prises en Charge 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"
    ]
}