Pimp My Chat

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

Pimp My Chatคืออะไร?

Pimp My Chat เป็นส่วนขยายของ Chrome ที่พัฒนาโดย florian.standhartinger และคุณลักษณะหลักของมันคือ "Improve the user experience of ChatGPT and add missing features like: Search your Chat History"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pimp My Chat

ดาวน์โหลดไฟล์ส่วนขยาย 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": [
                ""
            ]
        }
    ]
}