// ==UserScript== // @name 滚动条美化 // @namespace Violentmonkey Scripts // @match *://*/* // @exclude *://127.0.0.1* // @exclude *://localhost* // @grant none // @version 1.3.1 // @author - // @description 2022/10/1 21:54:49 // @license MIT // @run-at document-body // @downloadURL none // ==/UserScript== const styleSheet = document.createElement('style'); document.head.appendChild(styleSheet); styleSheet.textContent = ` html, body { overflow-y: overlay; } ::-webkit-scrollbar { width: 10px; margin-left: 2px; } ::-webkit-scrollbar-thumb { background-color: #d9d9d9; border-radius: 9999em; } `;