DeepSeek 对话导出器 | DeepSeek Conversation Exporter Plus

优雅导出 DeepSeek 对话记录,支持 JSON 和 Markdown 格式。Elegantly export DeepSeek conversation records, supporting JSON and Markdown formats.

< 脚本DeepSeek 对话导出器 | DeepSeek Conversation Exporter Plus的反馈

评价:一般 - 脚本能用,但还有一些问题

§
发表于:2025-03-12

the logic for the script is good, but there is a problem. the script uses the request url from "history_messages?chat_session_id..." but the request url sometimes contains a "&cache_version={number}" at the end. this breaks the script and causes the constant cache error. to fix this, you will need to remove the "&cache_version={number}" before starting the export. just change the hookXHR to this and the script should work properly.

const hookXHR = () => {
    const originalOpen = XMLHttpRequest.prototype.open;
    XMLHttpRequest.prototype.open = function(...args) {
        if (args[1] && typeof args[1] === 'string' && args[1].includes('history_messages?chat_session_id') && args[1].includes('&cache_version=')) {
            args[1] = args[1].split('&cache_version=')[0];
        }
        this.addEventListener('load', function() {
            if (this.responseURL && this.responseURL.includes('history_messages?chat_session_id')) {
                processTargetResponse(this.responseText, this.responseURL);
            }
        });
        originalOpen.apply(this, args);
    };
};
hookXHR();
§
发表于:2025-03-15

Thank you very much!

发表回复

登录(不可用)以发表回复。

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址