滚动条美化

2022/10/1 21:54:49

目前為 2022-10-01 提交的版本,檢視 最新版本

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

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

styleSheet.textContent = `
  html, body {
    overflow-y: overlay;
  }

  ::-webkit-scrollbar {
    width: 11px;
    margin-left: 2px;
  }

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

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址