ChatGPT Bulk Delete

A Chrome extension to bulk delete ChatGPT conversations

Vad är ChatGPT Bulk Delete?

ChatGPT Bulk Delete är en Chrome-tillägg utvecklad av qcrao, och dess huvudfunktion är "A Chrome extension to bulk delete ChatGPT conversations".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner ChatGPT Bulk Delete-förlängningens CRX-fil

Ladda ner ChatGPT Bulk Delete-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn ChatGPT Bulk Delete ChatGPT Bulk Delete
ID effkgioceefcfaegehhfafjneeiabdjg
Officiell webbadress https://chromewebstore.google.com/detail/chatgpt-bulk-delete/effkgioceefcfaegehhfafjneeiabdjg
Beskrivning A Chrome extension to bulk delete ChatGPT conversations
Filstorlek 474 KB
Antal Installationer 3,410
Aktuell Version 4.3
Senast Uppdaterad 2024-01-12
Publiceringsdatum 2023-04-24
Betyg 4.29/5 Totalt 42 Betyg
Utvecklare qcrao
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/qcrao/bulk-delete-chatGPT
Stödda Språk 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"
        }
    ]
}