ChatGPT Bulk Delete

A Chrome extension to bulk delete ChatGPT conversations

ChatGPT Bulk Delete क्या है?

ChatGPT Bulk Delete qcrao द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chrome extension to bulk delete ChatGPT conversations"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ChatGPT Bulk Delete एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
        }
    ]
}