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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
도움말 페이지 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"
    ]
}