Greasy Fork is available in English.
抖音web版www.douyin.com搜索页滚动条增强显示
当前为
// ==UserScript==
// @name 抖音web版滚动条增强显示
// @namespace http://tampermonkey.net/
// @version 0.2
// @description 抖音web版www.douyin.com搜索页滚动条增强显示
// @author zjf
// @match https://www.douyin.com/search/*
// @match https://www.douyin.com/user/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=douyin.com
// @grant GM_addStyle
// @license MIT
// ==/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...
})();