My question is about the Youtube website on desktop chrome, and how google have modified the scrollbars width to a nearly unusable level, namely 8 pixels wide.
In this question, a reply provided by user @ubershmekel stops the css changes to scrollbars completely. It works wonderfully, it stop the YouTube hacks and they remain looking normal. I'd be happy enough with that, but they do look a bit out of place being normal grey on my dark theme.
I was wondering if anyone knows how to do a less forceful attack on their css than that script does, and simply stop the change that's actually changing the width. I don't mind the colour and style of the new ones, I just don't want them so narrow to be almost unusable.
I've tried doing a rule.selectorText.replace('::webkit-scrollbars { width: 8px; }', '') in my greasemonkey script but it didn't work out. I imagine you can't write back to selectorText. I also tried narrowing the filter on the if statement so that it only matched selectorText if it had that string in it, hoping I'd leave all the other css alone, but that didn't work either.