Greasy Fork

滚动条美化

美化滚动条样式

目前为 2022-11-20 提交的版本。查看 最新版本

// ==UserScript==
// @name        滚动条美化
// @description 美化滚动条样式
// @namespace   Violentmonkey Scripts
// @match       *://*/*
// @exclude     *://127.0.0.1*
// @exclude     *://localhost*
// @grant       none
// @version     1.3.5
// @author      -
// @description 2022/10/1 21:54:49
// @license MIT
// @run-at      document-body
// ==/UserScript==

const styleSheet = document.createElement('style');
document.head.appendChild(styleSheet);

styleSheet.textContent = `
  html {
    overflow-y: overlay !important;
  }

  body {
    overflow-y: overlay !important;
  }

  body::-webkit-scrollbar {
    width: 10px;
  }

  body::-webkit-scrollbar-thumb {
    background-color: #d9d9d9;
    border-radius: 9999em;
  }
`;