New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
revisit: dom.popup_allowed_events #1609
Comments
Windows
UnixWrite your own updater. I've one that can uncomment in the user.js: https://codeberg.org/rusty-snake/firefox-config/src/branch/main/assets/updater2.sh |
Thanks for the link. I’m on *NIX. If this is relevant enough that people have started automating it, maybe it should be made a feature on all platforms. If someone cares for my two cents, I would not gate this feature behind a command-line option (enabled by default) and have the syntax be something like: user_pref("example.pref", ARKENFOX_UNSET); |
The number of active prefs has been decreasing ... I've tried to minimize things that are hidden or nasty to override (like URLS). Hidden is a usually boolean (from memory) .. but the others you can always just reset in about:config to look at the default value. But that's yet another "risk" in that defaults might change. Can I ask what pref is so concerning that you want to basically uncomment it? You still need to reset it from about:config if it was ever applied - user.js cannot reset prefs - it can only SET them, which is why I strongly recommend that you set them in user-overrides there is of course prefsCleaner which resets everything, once per update if you use it |
I want to keep the pref One could also argue that this value is fingerprintable, but if you tell me that it most likely isn’t used, I’m going to believe you. |
I think most of us never see them (without the pref being modified) because we're not exactly bouncing around the internet on dodgy websites and diving down dubious rabbit holes chasing free money and hookers and blow (can't speak for rusty-snake though) - so it's probably rare'ish .. who knows but all these events are used to spam and annoy (and phish) .. hence the pref
The question you need to ask yourself is ... have you ever encountered any breakage, and if not then why change it?. - but I guess it's hard to spot something that isn't there. Did you miss it?
I don't think it's directly fingerprintable, i.e it would require user gestures at a minimum, and thus it's not reliable or useful really for cross site linkage |
anyway ... just override with the default, which you can get from |
I'm going to move this pref to |
Is it possible to use
user-overrides.js
to prevent a pref set in arkenfox’s originaluser.js
from being set at all, keeping the current value, or leaving it unset and thus as the default? As I understand it, it isn’t, becauseuser-overrides.js
is simply appended touser.js
, so there is no way to remove a line inuser.js
viauser-overrides.js
.I could just look up what the current value is in
about:config
and override arkenfox’s value with that, but that would notThe text was updated successfully, but these errors were encountered: