user.js

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 92585ecd93165f7bff9e6baeed4e98be96272b92
parent 205d64ab29834a8be96327351d4bfb897b1daf1c
Author: Thorin-Oakenpants <Thorin-Oakenpants@users.noreply.github.com>
Date:   Tue, 13 Mar 2018 08:00:20 +0000

browser.link.open_newwindow #371

adding this back in (so it is not missing for release changes), section will get a makeover, see linked issue
Diffstat:
Muser.js | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/user.js b/user.js @@ -1062,6 +1062,10 @@ user_pref("browser.link.open_newwindow.restriction", 0); * [1] https://developer.mozilla.org/docs/Web/Events/beforeunload * [2] https://support.mozilla.org/questions/1043508 ***/ user_pref("dom.disable_beforeunload", true); +/* 2206: open new windows in a new tab instead + * 1=current window, 2=new window, 3=most recent window + * [SETTING] Options>General>Tabs>Open new windows in a new tab instead ***/ + user_pref("browser.link.open_newwindow", 3); /*** 2300: WEB WORKERS [SETUP] A worker is a JS "background task" running in a global context, i.e. it is different from