ChatGPT Bulk Delete

A Chrome extension to bulk delete ChatGPT conversations

ChatGPT Bulk Deleteคืออะไร?

ChatGPT Bulk Delete เป็นส่วนขยายของ Chrome ที่พัฒนาโดย qcrao และคุณลักษณะหลักของมันคือ "A Chrome extension to bulk delete ChatGPT conversations"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ChatGPT Bulk Delete

ดาวน์โหลดไฟล์ส่วนขยาย ChatGPT Bulk Delete ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        https://chatgpt-bulk-delete.qcrao.com/

This Chrome extension is designed to help users delete conversations in ChatGPT's left sidebar quickly and efficiently. With the extension installed, users can add checkboxes to each conversation in the sidebar, select multiple conversations to delete, and then delete them with just a few clicks.

This extension is particularly useful for users who frequently use ChatGPT and need to manage their conversations efficiently. Instead of deleting conversations one by one, they can delete multiple conversations at once, saving time and effort.

Overall, this extension provides a simple and intuitive solution for ChatGPT users to manage their conversations effectively.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ ChatGPT Bulk Delete ChatGPT Bulk Delete
ID effkgioceefcfaegehhfafjneeiabdjg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chatgpt-bulk-delete/effkgioceefcfaegehhfafjneeiabdjg
คำอธิบาย A Chrome extension to bulk delete ChatGPT conversations
ขนาดไฟล์ 474 KB
จำนวนการติดตั้ง 3,410
เวอร์ชันปัจจุบัน 4.3
อัปเดตครั้งล่าสุด 2024-01-12
วันที่เผยแพร่ 2023-04-24
คะแนน 4.29/5 รวมทั้งหมด 42 คะแนน
ผู้พัฒนา qcrao
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/qcrao/bulk-delete-chatGPT
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Bulk Delete",
    "version": "4.3",
    "description": "A Chrome extension to bulk delete ChatGPT conversations",
    "icons": {
        "48": "icon48.png"
    },
    "action": {
        "default_icon": "icon48.png",
        "default_popup": "popup.html",
        "default_title": "Bulk Delete Conversations"
    },
    "permissions": [
        "scripting",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ],
            "js": [
                "globals.js",
                "addCheckboxes.js",
                "bulkDeleteConversations.js"
            ],
            "run_at": "document_idle"
        }
    ]
}