Greasy Fork is available in English.

Hide scrollbar

Hides the main scrollbar

/* ==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;
}