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
官方網址 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": [
                ""
            ]
        }
    ]
}