Pimp My Chat

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

What is Pimp My Chat?

Pimp My Chat is a Chrome extension developed by florian.standhartinger, and its main feature is "Improve the user experience of ChatGPT and add missing features like: Search your Chat History".

Extension Screenshots

screenshot

Download Pimp My Chat Extension CRX File

Download Pimp My Chat extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Pimp My Chat Pimp My Chat
ID bdepgidiiieegfdiaijfmgjbohpgolpa
Official URL https://chromewebstore.google.com/detail/pimp-my-chat/bdepgidiiieegfdiaijfmgjbohpgolpa
Description Improve the user experience of ChatGPT and add missing features like: Search your Chat History
File Size 1.47 MB
Installation Count 168
Current Version 1.2
Last Updated 2023-12-30
Publish Date 2023-12-29
Rating 4.00/5 Total 1 Ratings
Developer florian.standhartinger
Email [email protected]
Payment Type free
Privacy Policy Page URL https://gpt-assisted-coding.onrender.com/privacy-pmc.txt
Supported Languages 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": [
                ""
            ]
        }
    ]
}