Pimp My Chat

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

什么是Pimp My Chat?

Pimp My Chat是由florian.standhartinger开发的Chrome扩展程序,该扩展的主要功能是“Improve the user experience of ChatGPT and add missing features like: Search your Chat History”。

扩展截图

screenshot

下载Pimp My Chat扩展crx文件

下载Pimp My Chat扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Pimp My Chat Pimp My Chat
ID bdepgidiiieegfdiaijfmgjbohpgolpa
官方URL https://chromewebstore.google.com/detail/pimp-my-chat/bdepgidiiieegfdiaijfmgjbohpgolpa
简介 Improve the user experience of ChatGPT and add missing features like: Search your Chat History
文件大小 1.47 MB
安装次数 168
当前版本 1.2
更新时间 2023-12-30
上架时间 2023-12-29
评分 4.00/5 共1次评分
开发者 florian.standhartinger
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://gpt-assisted-coding.onrender.com/privacy-pmc.txt
支持的语言 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": [
                ""
            ]
        }
    ]
}