Personally, I can't stand how distracting YouTube thumbnails are. I found this list to block them from the sidebar when watching videos. ! Hide all of the recommended videos on the right side of the page, except for the first up-next video. ! If you have a tall monitor you may need to add more entries, this blocks the initial list on most resolutions. www.youtube.com###items > .ytd-watch-next-secondary-results-render…
My uBlock Origin filters to remove distractions
71–80 of 190 posts
Re: My uBlock Origin filters to remove distractions
#72This is cool. I did something similar at one point. Unfortunately these websites change their basic layout so often that it felt like these fixes would work for 1 month max then I'd have to configure again. I ended up moving to news feed eradicator. https://chrome.google.com/webstore/detail/news-feed-eradicat... I let myself use reddit for 5 minutes every morning. It auto blocks the feed when those 5 minutes are up.…
> "Unfortunately these websites change their basic layout so often that it felt like these fixes would work for 1 month max then I'd have to configure again." You're exaggerating. My userContent.css is 60kB, and although breakages do happen indeed, it's occasional and nowhere near "redo everything every month". What I will reckon is a pain, are machine-mangled CSS classes (e.g. by packers for React / other frameworks…
Re: My uBlock Origin filters to remove distractions
#73Re: My uBlock Origin filters to remove distractions
#74Tangentially: after you've blocked a very large number of ads and sidebars, one useful enhancement is to expand whatever text elements remain, to regain use of all that now-empty whitespace. Something like so: :xpath(//main/div):style(min-width: 80% !important) (I've been looking at going a step further for some sites, by annotating a "column-count:" [0] rule and making the screen look like a newspaper. (Narrow colum…
(I really like the column idea, and I'm working back towards RSS, with a bunch of smart filters, being my primary way of interacting with anything I visit regularly. I never should have given it up).
Re: My uBlock Origin filters to remove distractions
#75Personally I have to hide Stack Exchange’s trending questions on my work machine. Those things are catnip to me. askubuntu.com###hot-network-questions serverfault.com###hot-network-questions stackexchange.com###hot-network-questions stackoverflow.com###hot-network-questions superuser.com###hot-network-questions Also many sites disregard prefers-reduced-motion, so I’m often hiding visual distractions like endless caro…
Re: My uBlock Origin filters to remove distractions
#76Arc has native support for cosmetic improvements. Those are called Boosts and you can interactively create your owns in just a few clicks, and also add custom CSS/JS if needed. I use this extensively to declutter/dedistract most websites I visit: Facebook, Twitter, Reddit, Medium, Gmail, YouTube, and so on. It's a real life-changer! See the Boosts shared by other users here: https://arc.net/boosts
Re: My uBlock Origin filters to remove distractions
#77Thanks! I do this all the time too :) . Makes for a more pleasant / less cluttered experience on sites I use a lot. I'll add that another thing that is pretty easy to do is to add a Dark Mode to websites that don't have one. All you need is a userContent.css/uBlock rule like @media (prefers-color-scheme: dark) { body { background-color: #111 !important; color: #eee !important; } /* etc, more stuff here depending on s…
Re: My uBlock Origin filters to remove distractions
#78Re: My uBlock Origin filters to remove distractions
#79Re: My uBlock Origin filters to remove distractions
#80Thanks! I do this all the time too :) . Makes for a more pleasant / less cluttered experience on sites I use a lot. I'll add that another thing that is pretty easy to do is to add a Dark Mode to websites that don't have one. All you need is a userContent.css/uBlock rule like @media (prefers-color-scheme: dark) { body { background-color: #111 !important; color: #eee !important; } /* etc, more stuff here depending on s…
Dark Reader extension does basically this (I think they either change colors or add the invert filter depending on what looks better?), but also has builtin CSS override rules for many sites. Love it.