Open ourfor opened 1 year ago
再比如修改ChatGPT
聊天网页显示的用户名、邮件、头像等
if ($request.url.indexOf('chat.openai.com/api/auth/session') != -1) {
if($response.status == 200){
$notification.post("ChatGPT 个性化", "", "");
const data = JSON.parse($response.body);
data.user.name = "风暴降生龙之母";
data.user.email = "god@mail.com"
$done({status: 200, headers: $response.headers, body: JSON.stringify(data) })
}else{
$done({})
}
}else{
$done({})
}
效果如下
当然,也可以借助油猴脚本重写浏览器的fetch
,每种方法有它的应用场景,你甚至可以通过伪站来实现,做到无感知
例子