ChatGPT Bulk Delete
A Chrome extension to bulk delete ChatGPT conversations
Wat is ChatGPT Bulk Delete?
ChatGPT Bulk Delete is een Chrome-extensie ontwikkeld door qcrao, en de belangrijkste functie is "A Chrome extension to bulk delete ChatGPT conversations".
Extensie Screenshots
Download het CRX-bestand van de extensie ChatGPT Bulk Delete
Download ChatGPT Bulk Delete-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | ChatGPT Bulk Delete |
ID | effkgioceefcfaegehhfafjneeiabdjg |
Officiële URL | https://chromewebstore.google.com/detail/chatgpt-bulk-delete/effkgioceefcfaegehhfafjneeiabdjg |
Beschrijving | A Chrome extension to bulk delete ChatGPT conversations |
Bestandsgrootte | 474 KB |
Aantal Installaties | 3,410 |
Huidige Versie | 4.3 |
Laatst Bijgewerkt | 2024-01-12 |
Publicatiedatum | 2023-04-24 |
Beoordeling | 4.29/5 Totaal 42 Beoordelingen |
Ontwikkelaar | qcrao |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/qcrao/bulk-delete-chatGPT |
Ondersteunde Talen | 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" } ] } |