mirror of
https://github.com/yokoffing/Betterfox.git
synced 2026-06-12 07:30:47 +05:30
Updated user.js Syntax (markdown)
@@ -8,8 +8,6 @@ Every line that sets a preference follows this format:
|
|||||||
|
|
||||||
`user_pref("preference.name.here", value);`
|
`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.
|
* `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", 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.
|
* `"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.
|
||||||
|
|||||||
Reference in New Issue
Block a user