ChatGPT Content Download

下载所有回复内容

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

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

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         ChatGPT Content Download
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  下载所有回复内容
// @author       不告诉你
// @match        https://chat.openai.com/chat
// @match        https://chat.openai.com/chat/*
// @match        https://chat.openai.com/auth/login
// @license      GPL-3.0
// @run-at       document-idie
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Add a toggle button
    let toggleBtn2 = document.createElement("button");
    toggleBtn2.style.position = "fixed";
    toggleBtn2.style.top = "40px";
    toggleBtn2.style.right = "10px";
    toggleBtn2.innerHTML = "Download Content";
    toggleBtn2.onclick = function() {
        //const div = document.querySelector("#__next > div.overflow-hidden.w-full.h-full.relative");
        let divs=document.getElementsByClassName("w-full border-b");
        var text = "";
        for (var i = 0; i < divs.length; i++) {
             text = text + divs[i].innerText +"\n";
        }
        const a = document.createElement("a");
        const blob = new Blob([text], { type: "text/plain" });
        a.href = URL.createObjectURL(blob);
        a.download = "text.txt";
        a.click();
    }
    document.body.appendChild(toggleBtn2);
})();