From a7326859ce3243e75f82e26ef1c917b554192102 Mon Sep 17 00:00:00 2001 From: Thorin-Oakenpants Date: Tue, 20 Oct 2020 13:33:24 +0000 Subject: [PATCH] Updated 1.4 Troubleshooting (markdown) --- 1.4-Troubleshooting.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/1.4-Troubleshooting.md b/1.4-Troubleshooting.md index 237db3a..09a2b57 100644 --- a/1.4-Troubleshooting.md +++ b/1.4-Troubleshooting.md @@ -6,12 +6,12 @@ We have an "unofficial" sticky issue [here](https://github.com/arkenfox/user.js/ ### :small_orange_diamond: Check your `"parrot"` and console -When you modify your user.js, such as adding any overrides, sometimes syntax errors happen. Open about:config and check your `"parrot"`. Arkenfox uses `_user.js.parrot` throughout the user.js. You can use any pref name you like, as long as it's different (to avoid confusion). Note: [not all](https://blog.mozilla.org/nnethercote/2018/03/09/a-new-preferences-parser-for-firefox/) syntax errors cause the user.js parsing to be aborted. After Firefox opens, open the Browser Console (Ctrl+Shift+J) and check for any pref-parsing related warnings/errors. +When you modify your user.js, such as adding any overrides, sometimes syntax errors happen. Open about:config and check your `"parrot"`. Arkenfox uses `_user.js.parrot` throughout the user.js. You can use any pref name you like, as long as it's different (to avoid confusion). Note: [not all](https://blog.mozilla.org/nnethercote/2018/03/09/a-new-preferences-parser-for-firefox/) syntax errors cause the user.js parsing to be aborted. After Firefox opens, open the Browser Console (`Ctrl+Shift+J`) and check for any pref-parsing related warnings/errors. example ```js /* my overrides */ -user_pref("canary.in.a.coalmine", "overrides: starting"); // parrot, canary, whatever you like +user_pref("canary.in.a.coalmine", "overrides: started"); // parrot, canary, whatever you like user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true); // userChrome/userContent user_pref("ui.key.menuAccessKey", 0); // disable alt key toggling the menu bar [RESTART]