DeepSeek 对话导出器 | DeepSeek Conversation Exporter Plus

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

< Feedback on DeepSeek 对话导出器 | DeepSeek Conversation Exporter Plus

Review: OK - script works, but has bugs

§
Posted: 12-03-2025

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();
BlakeHansen130Tác giả
§
Posted: 15-03-2025

Thank you very much!

Post reply

Đăng nhập để bình luận