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;
}