滚动条美化

美化滚动条

// ==UserScript==
// @name         滚动条美化
// @namespace    https://blog.csdn.net/2402_82985523?spm=1000.2115.3001.5343
// @version      1.0
// @description  美化滚动条
// @author       Neatsuki
// @match *://*/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=greasyfork.org
// @grant        none
// @license      GPL-3.0 License
// ==/UserScript==
(function() {
    'use strict';

    const style = document.createElement('style');
    style.innerHTML = `
        ::-webkit-scrollbar {
            width: 7px;
        }
        ::-webkit-scrollbar-track {
            background: #e1e1f9;
        }
        ::-webkit-scrollbar-thumb {
            background: #a2a2eb;
            border-radius: 6px;
        }
    `;
    document.head.appendChild(style);
})();