ChatGPT Bulk Delete

A Chrome extension to bulk delete ChatGPT conversations

What is ChatGPT Bulk Delete?

ChatGPT Bulk Delete is a Chrome extension developed by qcrao, and its main feature is "A Chrome extension to bulk delete ChatGPT conversations".

Extension Screenshots

screenshot
screenshot
screenshot

Download ChatGPT Bulk Delete Extension CRX File

Download ChatGPT Bulk Delete extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name ChatGPT Bulk Delete ChatGPT Bulk Delete
ID effkgioceefcfaegehhfafjneeiabdjg
Official URL https://chromewebstore.google.com/detail/chatgpt-bulk-delete/effkgioceefcfaegehhfafjneeiabdjg
Description A Chrome extension to bulk delete ChatGPT conversations
File Size 474 KB
Installation Count 3,410
Current Version 4.3
Last Updated 2024-01-12
Publish Date 2023-04-24
Rating 4.29/5 Total 42 Ratings
Developer qcrao
Email [email protected]
Payment Type free
Extension Website https://github.com/qcrao/bulk-delete-chatGPT
Supported Languages 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"
        }
    ]
}