您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
本脚本由ChatGPT协助开发,按下alt+q后可以快捷开启新对话(替代鼠标点击new chat按钮开启新对话)
// ==UserScript== // @name ChatGPT快捷键 // @namespace Violentmonkey Scripts // @match https://chat.openai.com/* // @grant none // @version 1.0 // @author leii // @description 本脚本由ChatGPT协助开发,按下alt+q后可以快捷开启新对话(替代鼠标点击new chat按钮开启新对话) // @license MIT // ==/UserScript== const newChatButtonSelector = 'a.flex.py-3.px-3.items-center.gap-3.rounded-md.hover\\:bg-gray-500\\/10.transition-colors.duration-200.text-white.cursor-pointer.text-sm.mb-2.flex-shrink-0.border.border-white\\/20'; (function() { 'use strict'; document.addEventListener('keydown', function(e) { if (e.altKey && e.key === 'q' || e.key === 'Q') { const newChatButton = document.querySelector(newChatButtonSelector); if (newChatButton) { newChatButton.click(); } } }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址