ChatGPT Bulk Delete
A Chrome extension to bulk delete ChatGPT conversations
ChatGPT Bulk Deleteとは何ですか?
ChatGPT Bulk Deleteはqcraoによって開発されたChromeの拡張機能で、その主な機能は「A Chrome extension to bulk delete ChatGPT conversations」です。
拡張機能のスクリーンショット
ChatGPT Bulk Delete拡張機能のCRXファイルをダウンロード
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 |
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 |
Eメール | [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" } ] } |