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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    ]
}