Greasy Fork

Greasy Fork is available in English.

个性滚动条

网页滚动条美化

当前为 2021-08-12 提交的版本,查看 最新版本

// ==UserScript==
// @name        个性滚动条
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  网页滚动条美化
// @author       wuyupei
// @match         *://*/*
// @icon         https://www.google.com/s2/favicons?domain=greasyfork.org
// @grant        none
// ==/UserScript==
 
(function() {
const MyScrollBar = document.createElement('div')
MyScrollBar.innerHTML =
    `
        <style>
            ::-webkit-scrollbar {
                background-color: #fff;
                width: 6px;
            }
            ::-webkit-scrollbar-thumb {
                background-color: #2474b5;
                border-radius: 3px;
            }
            ::-webkit-scrollbar-button {
                display: none;
                background-color: red;
            }
            ::-webkit-scrollbar-corner {
                background-color: black;
            }
        </style>
     `
document.body.appendChild(MyScrollBar)
 
})(document);