ChatGPT Bulk Delete

A Chrome extension to bulk delete ChatGPT conversations

ChatGPT Bulk Delete là gì?

ChatGPT Bulk Delete là một tiện ích mở rộng Chrome được phát triển bởi qcrao, và tính năng chính của nó là "A Chrome extension to bulk delete ChatGPT conversations".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng ChatGPT Bulk Delete

Tải xuống các tệp mở rộng ChatGPT Bulk Delete dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ChatGPT Bulk Delete ChatGPT Bulk Delete
ID effkgioceefcfaegehhfafjneeiabdjg
URL Chính Thức https://chromewebstore.google.com/detail/chatgpt-bulk-delete/effkgioceefcfaegehhfafjneeiabdjg
Mô tả A Chrome extension to bulk delete ChatGPT conversations
Kích Thước Tệp 474 KB
Số Lần Cài Đặt 3,410
Phiên Bản Hiện Tại 4.3
Cập Nhật Lần Cuối 2024-01-12
Ngày Phát Hành 2023-04-24
Đánh Giá 4.29/5 Tổng số 42 Đánh Giá
Nhà Phát Triển qcrao
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/qcrao/bulk-delete-chatGPT
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}