您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Enhance your browsing experience with the Custom Scrollbar Styling user script.
当前为
// ==UserScript== // @name Better scrollbar // @namespace https://greasyfork.org/en/users/1116584-simeonleni // @description Enhance your browsing experience with the Custom Scrollbar Styling user script. // @run-at document-start // @match *://*/* // @grant GM_addStyle // @version 1.0 // ==/UserScript== (function() { // CSS code for scrollbar styling var customCSS = ` /* Thin scroll bar */ ::-webkit-scrollbar { width: 10px; } /* Scroll bar track */ ::-webkit-scrollbar-track { background-color: transparent; } /* Scroll bar thumb */ ::-webkit-scrollbar-thumb { background-color: #888; } /* Scroll bar thumb on hover */ ::-webkit-scrollbar-thumb:hover { background-color: #555; } `; // Add the CSS code to the page GM_addStyle(customCSS); })();