Better scrollbar

Enhance your browsing experience with the Custom Scrollbar Styling user script.

当前为 2023-07-09 提交的版本,查看 最新版本

// ==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);
})();