Gartic Phonebook

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

O que é Gartic Phonebook?

Gartic Phonebook é uma extensão do Chrome desenvolvida por gartic-phonebook-team, e sua principal característica é "Lets you replace Gartic Phone's default avatars with custom images".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Gartic Phonebook

Baixe arquivos de extensão Gartic Phonebook no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Gartic Phonebook Gartic Phonebook
ID aaeibnbllijldnmmioleniagkoipglbk
URL Oficial https://chromewebstore.google.com/detail/gartic-phonebook/aaeibnbllijldnmmioleniagkoipglbk
Descrição Lets you replace Gartic Phone's default avatars with custom images
Tamanho do Arquivo 185 KB
Contagem de Instalações 687
Versão Atual 1.1.0
Última Atualização 2022-08-03
Data de Publicação 2022-08-02
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor gartic-phonebook-team
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/TheIcyStar/Gartic-Phonebook
URL da Página de Ajuda https://github.com/TheIcyStar/Gartic-Phonebook/issues
Idiomas Suportados 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"
    ]
}