openai 太鸡贼了,为了让我们少用 GPT4 ,每次都要我们手动选择菜单,然后点击 GPT4 。
之前可以直接存起一个
https://chat.openai.com/chat?model=gpt-4 的地址就可以了。现在还禁止了这种操作。
我写了一个小脚本可以自动模拟点击那个菜单,保证每次都是 GPT4 ,需要搭配 Tampermonkey 使用。
请新建一个脚本,把下面的代码贴进去启用即可。
// ==UserScript==
// @
name Always GPT-4
// @
namespace http://tampermonkey.net/// @
version 0.1
// @
description try to take over the world!
// @
author You
// @
match https://chat.openai.com/*// @
icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @
grant none
// ==/UserScript==
(function() {
'use strict';
function clickElementWhenAvailable() {
var element = document.querySelector('[class^="relative flex w-full cursor-default"]');
if (element) {
element.click();
observer.disconnect(); // Stop observing once the element is clicked
}
setTimeout(function() {
var ul = document.querySelector('ul');
var secondItem = ul.getElementsByTagName('li')[1];
secondItem.click();
}, 100);
}
var observer = new MutationObserver(clickElementWhenAvailable);
observer.observe(document.body, {
childList: true,
subtree: true,
});
clickElementWhenAvailable(); // Check if the element is available when the script runs
})();
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
https://www.v2ex.com/t/936284
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.