Copy ChatGPT's all replies

Add a Copy button to the first element with class "ml-1" on https://chat.openai.com to copy content of all elements with class "prose" with basic formatting.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         Copy ChatGPT's all replies
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Add a Copy button to the first element with class "ml-1" on https://chat.openai.com to copy content of all elements with class "prose" with basic formatting.
// @author       You
// @match        https://chat.openai.com/*
// @grant        none
// @license MIT
// ==/UserScript==
(function() {
    'use strict';
    function getFormattedText(element) {
        let result = '';
        for (const child of element.childNodes) {
            switch (child.nodeType) {
                case Node.TEXT_NODE:
                    result += child.textContent;
                    break;
                case Node.ELEMENT_NODE:
                    switch (child.tagName) {
                        case 'BR':
                            result += '\n';
                            break;
                        case 'P':
                            result += getFormattedText(child) + '\n\n';
                            break;
                        case 'OL':
                        case 'UL':
                            const items = child.querySelectorAll('li');
                            if (child.tagName === 'OL') {
                                items.forEach((item, index) => {
                                    result += `${index + 1}. ${getFormattedText(item)}\n`;
                                });
                            } else {
                                items.forEach(item => {
                                    result += `- ${getFormattedText(item)}\n`;
                                });
                            }
                            result += '\n';
                            break;
                        default:
                            result += getFormattedText(child);
                    }
            }
        }
        return result;
    }
    function addCopyButton() {
        const ml1Element = document.querySelector('.ml-1');
        if (!ml1Element) return;
        const copyButton = document.createElement('button');
        copyButton.className = 'btn relative btn-neutral border-0 md:border';
        copyButton.textContent = 'Copy';
        copyButton.addEventListener('click', () => {
            const proseElements = document.querySelectorAll('.prose');
            let formattedText = '';
            for (const proseElement of proseElements) {
                formattedText += getFormattedText(proseElement);
            }
            navigator.clipboard.writeText(formattedText).then(() => {
                console.log('Prose content copied to clipboard with basic formatting.');
            }).catch(err => {
                console.error('Error copying prose content to clipboard:', err);
            });
        });
        ml1Element.appendChild(copyButton);
    }
    window.addEventListener('load', () => {
        setTimeout(addCopyButton, 1000);
    });
})();