// ==UserScript== // @name 全局细滚动条 // @namespace https://greasyfork.org/zh-CN/scripts/460793 // @version 1.0.2 // @description 将所有网页的滚动条样式改为细滚动条。 // @author nosora // @match *://*/* // @grant none // @run-at document-start // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; var css = '::-webkit-scrollbar { width: 6px; height: 6px; border-radius: 1.5px; } ::-webkit-scrollbar-track { background-color: #f5f5f500; } ::-webkit-scrollbar-thumb { background-color: #bbbbbb90; border-radius: 1.5px; }'; var style = document.createElement('style'); style.type = 'text/css'; style.appendChild(document.createTextNode(css)); // 使用更安全的appendChild方法 document.getElementsByTagName('head')[0].appendChild(style); })();