ChatGPT Avatar Replacer

Replace ChatGPT avatar with uploaded image.

Co to jest ChatGPT Avatar Replacer?

ChatGPT Avatar Replacer to rozszerzenie Chrome opracowane przez LASER, a jego główną funkcją jest „Replace ChatGPT avatar with uploaded image.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia ChatGPT Avatar Replacer

Pobierz pliki rozszerzeń ChatGPT Avatar Replacer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        ChatGPT Avatar Replacer is a tool designed to replace or customize avatars (visual representations of users) in a chat interface that uses ChatGPT. This tool might allow users to choose different avatars, modify existing ones, or even create entirely new avatars to represent themselves in the chat environment. This could be useful for personalizing the user experience, enhancing privacy, or simply adding a creative touch to chat interactions.                    

Podstawowe informacje o rozszerzeniu

Nazwa ChatGPT Avatar Replacer ChatGPT Avatar Replacer
ID jggkmllkohmnjiconnimmjbloefdjfak
Oficjalny URL https://chromewebstore.google.com/detail/chatgpt-avatar-replacer/jggkmllkohmnjiconnimmjbloefdjfak
Opis Replace ChatGPT avatar with uploaded image.
Rozmiar pliku 24.33 KB
Liczba instalacji 156
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2023-04-12
Data Publikacji 2023-04-11
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper LASER
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Avatar Replacer",
    "version": "1.0",
    "description": "Replace ChatGPT avatar with uploaded image.",
    "permissions": [
        "tabs",
        "storage"
    ],
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "48": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}