Gartic Phonebook

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

Gartic Phonebookとは何ですか?

Gartic Phonebookはgartic-phonebook-teamによって開発されたChromeの拡張機能で、その主な機能は「Lets you replace Gartic Phone's default avatars with custom images」です。

拡張機能のスクリーンショット

screenshot
screenshot

Gartic Phonebook拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    ]
}