优雅的滚动条

Elegant scrollbar style to all websites

// ==UserScript==
// @name         优雅的滚动条
// @version      0.1
// @description  Elegant scrollbar style to all websites
// @author       StarKWL
// @match        http://*/*
// @match        https://*/*
// @grant        none
// @license      MIT
// @namespace https://greasyfork.org/users/936647
// ==/UserScript==

(function() {
  const css = `
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }

  ::-webkit-scrollbar-track {
    opacity: 0;
  }

  ::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: #7D7D7D;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #979797;
  }

  ::-webkit-scrollbar-thumb:active {
    background: #8A8A8A;
  }
  `;

  const style = document.createElement('style');
  style.textContent = css;

  document.head.appendChild(style);
})();