Gartic Phonebook

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

Что такое Gartic Phonebook?

Gartic Phonebook - это расширение Chrome, разработанное gartic-phonebook-team, и его основная функция - "Lets you replace Gartic Phone's default avatars with custom images".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Gartic Phonebook

Скачайте файлы расширений Gartic Phonebook в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Gartic Phonebook Gartic Phonebook
ID aaeibnbllijldnmmioleniagkoipglbk
Официальный URL https://chromewebstore.google.com/detail/gartic-phonebook/aaeibnbllijldnmmioleniagkoipglbk
Описание Lets you replace Gartic Phone's default avatars with custom images
Размер файла 185 KB
Количество установок 687
Текущая Версия 1.1.0
Последнее Обновление 2022-08-03
Дата публикации 2022-08-02
Рейтинг 5.00/5 Всего 3 оценок
Разработчик gartic-phonebook-team
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/TheIcyStar/Gartic-Phonebook
URL страницы помощи https://github.com/TheIcyStar/Gartic-Phonebook/issues
Поддерживаемые языки 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"
    ]
}