使用 给大家带来新玩具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,
});
});
});
};
})();