Pimp My Chat

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

Wat is Pimp My Chat?

Pimp My Chat is een Chrome-extensie ontwikkeld door florian.standhartinger, en de belangrijkste functie is "Improve the user experience of ChatGPT and add missing features like: Search your Chat History".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Pimp My Chat

Download Pimp My Chat-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Pimp My Chat Pimp My Chat
ID bdepgidiiieegfdiaijfmgjbohpgolpa
Officiële URL https://chromewebstore.google.com/detail/pimp-my-chat/bdepgidiiieegfdiaijfmgjbohpgolpa
Beschrijving Improve the user experience of ChatGPT and add missing features like: Search your Chat History
Bestandsgrootte 1.47 MB
Aantal Installaties 168
Huidige Versie 1.2
Laatst Bijgewerkt 2023-12-30
Publicatiedatum 2023-12-29
Beoordeling 4.00/5 Totaal 1 Beoordelingen
Ontwikkelaar florian.standhartinger
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://gpt-assisted-coding.onrender.com/privacy-pmc.txt
Ondersteunde Talen 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": [
                ""
            ]
        }
    ]
}