1
0

Add Vivaldi

This commit is contained in:
2025-12-26 11:52:01 +01:00
parent 2865c8196a
commit 5bdcdedb04
140 changed files with 10199 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
// ==UserScript==
// @name Unobtrusive Scrollbar
// @namespace http://tampermonkey.net/
// @version 0.1
// @description A better scrollbar
// @author You
// @match *://*/*
// @grant GM_addStyle
// @run-at document-start
// @noframes
// ==/UserScript==
GM_addStyle(`
::-webkit-scrollbar{width:7px;height:7px}
::-webkit-scrollbar-track-piece,::-webkit-scrollbar-corner{background-color:rgba(0,0,0,0)}
::-webkit-scrollbar-thumb{height:50px;background-color:#888;border-radius:5px;--outline:1px solid rgba(0,0,0,0);--outline-offset:-1px}
::-webkit-scrollbar-thumb:hover{background-color:#666}
`);