Greasy Fork is available in English.

Hide scrollbar

Hides the main scrollbar

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

  1. /* ==UserStyle==
  2. @name Hide scrollbar
  3. @description Hides the main scrollbar
  4. @author nullgemm
  5. @version 0.2.1
  6. @namespace https://greatest.deepsurf.us/en/users/322108-nullgemm
  7. @license WTFPL
  8. ==/UserStyle== */
  9. html
  10. {
  11. scrollbar-width: none;
  12. }
  13. ::-webkit-scrollbar
  14. {
  15. display:none;
  16. }