// ==UserScript== // @name Twitter Scroll to Top Button // @namespace mundane // @version 1.0 // @description Add a button to scroll the page to the top on Twitter website // @author none // @match https://twitter.com/* // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function () { 'use strict'; // 创建回到顶部的按钮 const btn = document.createElement('div'); btn.innerHTML = ``; btn.style.position = 'fixed'; btn.style.right = '67px'; btn.style.bottom = '75px'; btn.style.cursor = 'pointer'; document.body.appendChild(btn); // 点击按钮时滚动页面到顶部 btn.addEventListener('click', () => { window.scrollTo({ top: 0, behavior: 'smooth' }); }); })();