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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة سياسة الخصوصية 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": [
                ""
            ]
        }
    ]
}