this post was submitted on 19 Feb 2025
196 points (98.5% liked)
Privacy
34089 readers
718 users here now
A place to discuss privacy and freedom in the digital world.
Privacy has become a very important issue in modern society, with companies and governments constantly abusing their power, more and more people are waking up to the importance of digital privacy.
In this community everyone is welcome to post links and discuss topics related to privacy.
Some Rules
- Posting a link to a website containing tracking isn't great, if contents of the website are behind a paywall maybe copy them into the post
- Don't promote proprietary software
- Try to keep things on topic
- If you have a question, please try searching for previous discussions, maybe it has already been answered
- Reposts are fine, but should have at least a couple of weeks in between so that the post can reach a new audience
- Be nice :)
Related communities
much thanks to @gary_host_laptop for the logo design :)
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
i use uMatrix (by the same author as uBlock Origin), which essentially allows very granular control over what dynamic content to allow:
per domain and subdomain you can allow script, xhr, media, frames, cookies, images, css, and other things
so you can say, for example, on lemm.ee deny any scripts from google.com from loading and deny any xhr (so analytics can’t work even if the script is hosted on the sites own domain)
this stops a lot of fingerprinting in its tracks (except when you need to allow eg reCAPTCHA), but it does break pretty much every website until you go and allow only known good things (like scripts and xhr to the sites own domain)
there’s also server-side fingerprinting, which is harder again
This looks to be an excellent tool, thanks for sharing and have a good one.
you’re welcome! you too!
it should be noted though that it hasn’t been updated since 2021, and its repo has been archived (i’m not sure of the reasons). it still works great, but it’s not going to get any updates
Its functionality is pretty much built into uBlock Origin now, see https://github.com/gorhill/uBlock/wiki/Dynamic-filtering.
i’ve tried using dynamic filtering before, but honestly the UI for it is horrible… their example they give for allowing youtube embeds shows my issue with it pretty well:
their solution is either to allow everything from google.com and youtube.com, or to allow all 3rd party frames
uMatrix allows me to, for example, allow 3rd party frames only from youtube.com, and block cookies for those same frames (heck you could even allow frames and block CSS originating from google if that worked!)
this is particularly useful for analytics services… sometimes the whole page won’t load if an analytics script doesn’t load, so you can allow only scripts and block xhr so it can’t send pings back home
Yeah it's definitely more "logical" and easier to use the way uMatrix does it.
gimme an advanced advanced mode that mimicks the uMatrix UI and i’d donate monthly for sure - uMatrix is one of my most used tools! i’d switch to uBO if the UI were as powerful
I wouldn't have known, it's very granular and not for the faint of heart (or technically limited.) Just what OP asked for!