您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
Clicks the stop button when Enter is pressed in the first textarea on chatglm.cn
当前为
// ==UserScript== // @name ChatGLM 插嘴功能 // @namespace http://tampermonkey.net/ // @version 0.1 // @description Clicks the stop button when Enter is pressed in the first textarea on chatglm.cn // @author You // @match https://chatglm.cn/* // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; // 等待页面加载完成 window.addEventListener('load', function() { // 获取页面中的第一个<textarea>元素 var textarea = document.querySelector('textarea'); // 如果找到了<textarea>元素,则为其添加键盘事件监听器 if (textarea) { textarea.addEventListener('keydown', function(event) { // 检查是否是单个Enter键按下 if (event.key === 'Enter' && !event.shiftKey && !event.ctrlKey && !event.altKey && !event.metaKey) { // 查找类名为"btn stop"的按钮 var stopButton = document.querySelector('.btn.stop'); // 如果找到了按钮,则触发click事件 if (stopButton) { stopButton.click(); } } }); } }, false); })();