Greasy Fork is available in English.

Dark Minimalistic Scrollbar

Customizable scrollbar for WebKit based browsers (Chrome, Opera).

Installa come stile utente?
Script suggerito dall'autore

Potresti essere interessato/a anche a GreasyFork - Dark Theme

Installa come stile utente

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

/* ==UserStyle==
@name         Dark Minimalistic Scrollbar
@namespace    https://github.com/pabli24/DMScrollbar
@version      0.1.3
@description  Customizable scrollbar for WebKit based browsers (Chrome, Opera).
@author       Pabli
@license      CC-BY-SA-4.0
@homepageURL  https://github.com/pabli24/DMScrollbar
@supportURL   https://github.com/pabli24/DMScrollbar/issues
@preprocessor uso
@var color border "border" #484848
@var color bar "bar" #383838
@var color hover "hover" #282828
@var color active "active" #181818
@var color corner "corner" #383838
@var color bg "background" rgba(0,0,0,0)
@var number width "width (px)" [10,0,null,null,'px']
@var number b "border (px)" [2,0,null,null,'px']
@var number br "border-radius (px)" [10,0,null,null,'px']
==/UserStyle== */
@-moz-document regexp(".*") {
html::-webkit-scrollbar {
	width: /*[[width]]*/ !important;
	height: /*[[width]]*/ !important;
	max-width: /*[[width]]*/ !important;
	max-height: /*[[width]]*/ !important;
	min-width: /*[[width]]*/ !important;
	min-height: /*[[width]]*/ !important;
}
html::-webkit-scrollbar-thumb {
	background-color: /*[[bar]]*/ !important;
	border: /*[[b]]*/ solid /*[[border]]*/ !important;
	border-radius: /*[[br]]*/ !important;
}
html::-webkit-scrollbar-track {
	background-color: /*[[bg]]*/ !important;
}
html::-webkit-scrollbar-thumb:hover {
	background: /*[[hover]]*/ !important;
	border: /*[[b]]*/ solid /*[[border]]*/ !important;
}
html::-webkit-scrollbar-thumb:active {
	background: /*[[active]]*/ !important;
}
html::-webkit-scrollbar-corner {
	background: /*[[corner]]*/ !important;
}
}