Hide scrollbar

Hides the main scrollbar

2020-06-28 기준 버전입니다. 최신 버전을 확인하세요.

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