From b025ff6e7d27b911ca3d8242b0c0b1326ccc1f41 Mon Sep 17 00:00:00 2001 From: yokoffing <11689349+yokoffing@users.noreply.github.com> Date: Wed, 4 Jun 2025 11:41:29 -0400 Subject: [PATCH] Updated user.js Syntax (markdown) --- user.js-Syntax.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/user.js-Syntax.md b/user.js-Syntax.md index 946f128..05ac987 100644 --- a/user.js-Syntax.md +++ b/user.js-Syntax.md @@ -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.