ChatGPT Bulk Delete

A Chrome extension to bulk delete ChatGPT conversations

Apa itu ChatGPT Bulk Delete?

ChatGPT Bulk Delete adalah ekstensi Chrome yang dikembangkan oleh qcrao, dan fitur utamanya adalah "A Chrome extension to bulk delete ChatGPT conversations".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi ChatGPT Bulk Delete

Unduh file ekstensi ChatGPT Bulk Delete dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama ChatGPT Bulk Delete ChatGPT Bulk Delete
ID effkgioceefcfaegehhfafjneeiabdjg
URL Resmi https://chromewebstore.google.com/detail/chatgpt-bulk-delete/effkgioceefcfaegehhfafjneeiabdjg
Deskripsi A Chrome extension to bulk delete ChatGPT conversations
Ukuran File 474 KB
Jumlah Instalasi 3,410
Versi Saat Ini 4.3
Terakhir Diperbarui 2024-01-12
Tanggal Publikasi 2023-04-24
Penilaian 4.29/5 Total 42 Penilaian
Pengembang qcrao
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/qcrao/bulk-delete-chatGPT
Bahasa yang Didukung 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"
        }
    ]
}