Gartic Phonebook
Lets you replace Gartic Phone's default avatars with custom images
Gartic Phonebook क्या है?
Gartic Phonebook gartic-phonebook-team द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Lets you replace Gartic Phone's default avatars with custom images"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Gartic Phonebook एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" ] } |