将下面的代码复制粘贴到油猴之类的脚本管理器就可以使用了
// ==UserScript==
// @name ✨Gemini 研究加速器✨
// @namespace https://replaceme.org
// @version 0.6
// @description 初次打开时开启 Deep Research,当研究方案出现时,点击开始研究
// @author Gemini & User Input
// @match https://gemini.google.com/*
// @grant none
// @license Unlicense
// ==/UserScript==
(function() {
'use strict';
let lastClickTime = 0; // 记录上次点击的时间
const clickDelay = 5000; // 设置延迟时间为5秒 (5000毫秒)
function clickDeepResearchButton() {
// Find the Deep Research button that IS NOT selected.
// We're looking for the button inside the toolbox-drawer-item that does *not* have the 'is-selected' class.
let deepResearchButton = document.querySelector('toolbox-drawer-item:not(.is-selected) > button.toolbox-drawer-item-button:not([data-clicked="true"])');
if (deepResearchButton) {
// Check if the button's label says "Deep Research" (English) or "深度研究" (Chinese).
let label = deepResearchButton.querySelector('.toolbox-drawer-button-label');
if (label && (label.textContent.trim() === 'Deep Research' || label.textContent.trim() === '深度研究')) {
deepResearchButton.click();
deepResearchButton.setAttribute('data-clicked', 'true'); // Mark as clicked by this script
console.log("🚀 已自动开启 Deep Research! 让我们深入挖掘!");
return true; // Indicate success
}
}
return false; // Indicate failure to find/click
}
function unleashTheResearchBeast() {
// 检查是否已经过了延迟时间
let currentTime = Date.now();
if (currentTime - lastClickTime < clickDelay) {
return; // 如果没有过延迟时间,则返回
}
// 查找所有具有 data-test-id="confirm-button" 的按钮
const confirmButtons = document.querySelectorAll('button[data-test-id="confirm-button"]:not([data-clicked="true"])');
for (const confirmButton of confirmButtons) {
// 获取紧邻的前一个兄弟元素
const prevSibling = confirmButton.previousElementSibling;
// 检查前一个兄弟元素是否存在,并且它是否具有 data-test-id="edit-button"
if (prevSibling && prevSibling.getAttribute('data-test-id') === 'edit-button') {
// 找到了目标按钮!(一个confirm-button,前面紧跟着一个edit-button)
confirmButton.click();
confirmButton.setAttribute('data-clicked', 'true'); // 标记为已被此脚本点击
lastClickTime = currentTime; // 更新上次点击的时间
console.log("⚡️ 已通过 data-test-id 触发“开始研究”!冲鸭! (Confirm Button after Edit Button)");
return; // 成功点击后退出函数,避免处理其他按钮
}
}
}
// Main loop
function runAccelerator() {
// 首先,尝试启用 Deep Research。
// 注意:如果 Deep Research 已经是启用的状态,clickDeepResearchButton 不会重复点击。
clickDeepResearchButton();
// 然后,尝试使用新的 data-test-id 逻辑点击 "开始研究"(或类似的确认按钮)。
unleashTheResearchBeast();
}
// 每 1000 毫秒(1 秒)运行一次加速器检查。
setInterval(runAccelerator, 1000);
console.log("✨ Gemini 研究加速器 v0.6 已加载!准备好体验光速了吗?✨");
})();