Pimp My Chat

Improve the user experience of ChatGPT and add missing features like: Search your Chat History

Co to jest Pimp My Chat?

Pimp My Chat to rozszerzenie Chrome opracowane przez florian.standhartinger, a jego główną funkcją jest „Improve the user experience of ChatGPT and add missing features like: Search your Chat History”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Pimp My Chat

Pobierz pliki rozszerzeń Pimp My Chat 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

                        Improve the user experience of ChatGPT and add missing features like: Search your Chat History                    

Podstawowe informacje o rozszerzeniu

Nazwa Pimp My Chat Pimp My Chat
ID bdepgidiiieegfdiaijfmgjbohpgolpa
Oficjalny URL https://chromewebstore.google.com/detail/pimp-my-chat/bdepgidiiieegfdiaijfmgjbohpgolpa
Opis Improve the user experience of ChatGPT and add missing features like: Search your Chat History
Rozmiar pliku 1.47 MB
Liczba instalacji 168
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2023-12-30
Data Publikacji 2023-12-29
Ocena 4.00/5 Łącznie 1 Oceny
Deweloper florian.standhartinger
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://gpt-assisted-coding.onrender.com/privacy-pmc.txt
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Pimp My Chat",
    "version": "1.2",
    "permissions": [
        "scripting",
        "tabs",
        "webRequest"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/chat.openai.com\/"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "styles.css",
                "panel.html",
                "panel.css",
                "animate.min.css"
            ],
            "matches": [
                ""
            ]
        }
    ]
}