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”。
擴展截圖
下載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 |
ID | aaeibnbllijldnmmioleniagkoipglbk |
官方網址 | 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" ] } |