Hide ScrollBar for Firefox
// ==UserScript==
// @name ScrollBar Hider
// @namespace https://github.com/Amadeus-AI
// @description Hide ScrollBar for Firefox
// @version 1.0.1
// @match *://*/*
// @run-at document-start
// @grant none
// @license MIT
// ==/UserScript==
(function() {
const style = document.createElement('style');
style.textContent = `
* {
scrollbar-width: none !important;
}
`;
document.documentElement.appendChild(style);
})();