1
0
mirror of https://github.com/yokoffing/Betterfox.git synced 2026-06-12 15:40:48 +05:30

Updated user.js Syntax (markdown)

yokoffing
2025-06-04 11:41:29 -04:00
parent 91b4b092c7
commit b025ff6e7d
-2
@@ -8,8 +8,6 @@ Every line that sets a preference follows this format:
`user_pref("preference.name.here", value);`
Let's unpack that:
* `user_pref`: A command that tells Firefox, "Hey, I want to set a user preference." You'll see this at the start of almost every active line.
* `("preference.name.here", value)`: This part is enclosed in parentheses.
* `"preference.name.here"`: The **name** of the Firefox setting you want to change. It's always a string of text, wrapped in double quotes. These names can look a bit like website addresses, with dots separating different parts. For example, `browser.startup.homepage` tells Firefox what page to load when it starts.