您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Adds buttons to scroll to the top and bottom of the chat on Chat GPT
当前为
// ==UserScript== // @name Chat GPT scroll to the top and bottom buttons // @author NWP // @description Adds buttons to scroll to the top and bottom of the chat on Chat GPT // @namespace https://greasyforks.org/users/877912 // @version 0.1 // @license MIT // @match https://chatgpt.com/* // @grant none // ==/UserScript== (function() { 'use strict'; function createButton(onClick, triangleDirection) { const button = document.createElement('button'); const buttonStyle = { backgroundColor: '#707070', border: 'none', borderRadius: '0.5em', cursor: 'pointer', display: 'flex', alignItems: 'center', justifyContent: 'center', width: '3.5em', height: '2em', position: 'relative', transition: 'background-color 0.3s', }; Object.assign(button.style, buttonStyle); button.addEventListener('click', onClick); const triangle = document.createElement('div'); triangle.style.width = '0'; triangle.style.height = '0'; triangle.style.borderLeft = '0.75em solid transparent'; triangle.style.borderRight = '0.75em solid transparent'; if (triangleDirection === 'up') { triangle.style.borderBottom = '0.75em solid black'; } else { triangle.style.borderTop = '0.75em solid black'; } button.appendChild(triangle); button.onmouseenter = function() { button.style.backgroundColor = '#9f9f9f'; }; button.onmouseleave = function() { button.style.backgroundColor = '#707070'; }; return button; } function scrollToTop() { const target = Array.from(document.querySelectorAll('div[class^="react-scroll-to-bottom--css"]')).filter(el => !el.className.includes('full'))[0]; if (target) target.scrollTop = 0; } function scrollToBottom() { const target = Array.from(document.querySelectorAll('div[class^="react-scroll-to-bottom--css"]')).filter(el => !el.className.includes('full'))[0]; if (target) target.scrollTop = target.scrollHeight; } window.addEventListener('load', function() { const shadowHost = document.createElement('div'); shadowHost.style.position = 'fixed'; shadowHost.style.bottom = '3em'; shadowHost.style.right = '2em'; shadowHost.style.zIndex = '1000'; document.body.appendChild(shadowHost); const shadowRoot = shadowHost.attachShadow({ mode: 'open' }); const container = document.createElement('div'); container.style.display = 'flex'; container.style.flexDirection = 'column'; container.style.alignItems = 'center'; container.style.gap = '0.25em'; shadowRoot.appendChild(container); const topButton = createButton(scrollToTop, 'up'); container.appendChild(topButton); const bottomButton = createButton(scrollToBottom, 'down'); container.appendChild(bottomButton); }); })();