arkenfox / user.js

Firefox privacy, security and anti-tracking: a comprehensive user.js template for configuration and hardening
MIT License
9.43k stars 507 forks source link

add pref to delete using `user-overrides.js`? #1832

Closed Obegg closed 2 months ago

Obegg commented 2 months ago

There is a perf I want to remove

user_pref("browser.bookmarks.addedImportButton", true);

But If I add this to user-overrides.js it will be added to perfs, so how can I make sure this perf is deleted?

rusty-snake commented 2 months ago

You can not delete prefs using user.js. You can empty their value (user_pref("foo.bar", "");).

If you want to delete a hidden pref, use about:config or edit prefs.js when Firefox is closed.

Obegg commented 2 months ago

Thank you for the fast reply and detailed answer!