Autohide scrollbars solution for Firefox 57+ WebExtensions obstacles. Tips for tweaks are appreciated :) source: https://www.reddit.com/r/firefox/comments/6v6otw/webex_replacement_for_hidescrollbars/
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址
Another way
Maybe a way to have custom scrollbars back is to get rid of the previous ones first by using something like that in userChrome.css:
#content browser {
margin-right: -15px !important;
overflow-y: scroll;
overflow-x: hidden;
}
NEXT, use an userscript to draw new custom scrollbars on the page (?)