Pandora Car 去除小锁脚本

image

使用 给大家带来新玩具Pandora Car开车平台,0门槛的共享ChatGPT Plus服务 开车的时候左边会有很多别人的聊天记录,占地方,而且不好翻自己的记录

油猴脚本重写 fetch 方法过滤掉所有带锁的项

// ==UserScript==
// @name         Filter JSON items with 🔒 in items array
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Filter out objects with 🔒 symbol in the title field within the items array when parsing JSON data.
// @author       Your Name
// @match        https://chat.oai2b.com/*
// @grant        none
// ==/UserScript==

(function () {
    "use strict";

    // 保存原始的JSON.parse方法
    const originalFetch = window.fetch;
    window.fetch = function () {
        return originalFetch.apply(this, arguments).then((response) => {
            return response
                .clone()
                .json()
                .then((data) => {
                    console.log("Original data:", data);
                    // 在这里过滤数据
                    if (data.items) {
                        data.items = data.items.filter(
                            (item) => item.title !== "🔒"
                        );
                    }
                    console.log("Filtered data:", data);
                    // 返回修改后的对象
                    return new Response(JSON.stringify(data), {
                        headers: response.headers,
                        status: response.status,
                        statusText: response.statusText,
                    });
                });
        });
    };
})();
7 Likes

挺好的小工具

不会导致消息记录没法下拉加载叭

应该不会,测试一下

感谢大佬分享

1 Like