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”。

扩展截图

screenshot
screenshot
screenshot

下载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 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
电子邮箱 [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"
        }
    ]
}