// ==UserScript== // @name 抖音web版滚动条增强显示 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 抖音web版www.douyin.com搜索页滚动条增强显示 // @author zjf // @match https://www.douyin.com/search/* // @icon https://www.google.com/s2/favicons?sz=64&domain=douyin.com // @grant GM_addStyle // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; GM_addStyle("::-webkit-scrollbar-thumb:hover, :hover::-webkit-scrollbar-thumb{background:#fe2c55}"); GM_addStyle("::-webkit-scrollbar-thumb{background:#fe2c55}"); // Your code here... })();