Greasy Fork 支持简体中文。

Hide scrollbar

Hides the main scrollbar

目前為 2020-08-02 提交的版本,檢視 最新版本

/* ==UserStyle==
@name          Hide scrollbar
@description   Hides the main scrollbar
@author        nullgemm
@version       0.2.1
@namespace     https://greasyfork.org/en/users/322108-nullgemm
@license       WTFPL
==/UserStyle== */
html
{
  scrollbar-width: none;
}
::-webkit-scrollbar
{
    display:none;
}