佬们,这个油猴脚本会不会导致被OpenAI风控?

昨天看到gpt4.1 mini写东西吐字如拉稀,输出一分多钟之后还会问要不要继续生成,就搞了个这个程序点击继续生成的脚本,然后一会儿就被降智了,但是换个浏览器或者是直接用app就可以了。正在排查问题 :tieba_087:

// ==UserScript==
// @name         ChatGPT自动点击继续生成(疑似可能导致降智?)
// @author       schweigen
// @match        *://chatgpt.com/*
// @grant        none
// ==/UserScript==

// 选择器精确匹配你的按钮
const buttonSelector = 'button.btn.relative.btn-secondary.btn-small.py-2.whitespace-nowrap';

// 创建 MutationObserver 监听页面变化
const observer = new MutationObserver(() => {
    const button = document.querySelector(buttonSelector);
    // 检查按钮存在且是可见且可点击状态
    if (button && !button.disabled && button.offsetParent !== null) {
        button.click();
    }
});

// 配置监听整个body的变化
observer.observe(document.body, { childList: true, subtree: true });

// 可选:页面初次加载时也检查一次
window.addEventListener('DOMContentLoaded', () => {
    const button = document.querySelector(buttonSelector);
    if (button && !button.disabled && button.offsetParent !== null) {
        button.click();
    }
});
2 个赞

你让 gpt 干了什么需要吐那么多的字

会的会的千万别用,我已降智
换浏览器可解

此话题已在最后回复的 30 天后被自动关闭。不再允许新回复。