Pimp My Chat

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

Vad är Pimp My Chat?

Pimp My Chat är en Chrome-tillägg utvecklad av florian.standhartinger, och dess huvudfunktion är "Improve the user experience of ChatGPT and add missing features like: Search your Chat History".

Tilläggsskärmbilder

screenshot

Ladda ner Pimp My Chat-förlängningens CRX-fil

Ladda ner Pimp My Chat-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Pimp My Chat Pimp My Chat
ID bdepgidiiieegfdiaijfmgjbohpgolpa
Officiell webbadress https://chromewebstore.google.com/detail/pimp-my-chat/bdepgidiiieegfdiaijfmgjbohpgolpa
Beskrivning Improve the user experience of ChatGPT and add missing features like: Search your Chat History
Filstorlek 1.47 MB
Antal Installationer 168
Aktuell Version 1.2
Senast Uppdaterad 2023-12-30
Publiceringsdatum 2023-12-29
Betyg 4.00/5 Totalt 1 Betyg
Utvecklare florian.standhartinger
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://gpt-assisted-coding.onrender.com/privacy-pmc.txt
Stödda Språk 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": [
                ""
            ]
        }
    ]
}