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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
    ]
}