-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprefs.js
More file actions
25 lines (23 loc) · 710 Bytes
/
prefs.js
File metadata and controls
25 lines (23 loc) · 710 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// The about:config options I set, that aren't accessible through any other GUI.
// Not actually a prefs.js file.
/*
* Don't exit Firefox fullscreen when pressing Esc.
*
* Doesn't affect Videos!
*
* Fullscreen can still be disabled with whatever
* the shortcut was you used to enable it. (F11/Ctrl+Cmd+F/...)
*
* Primarily useful to toggle the JS console in the dev tools. (at least for me)
*/
user_pref('browser.fullscreen.exit_on_escape', false);
/*
* Enable loading userChrome.css
*
* Required for userChrome.css files!
*
* Already set if you use the install dir mod.
*
* No effect without a userChrome.css file.
*/
user_pref('toolkit.legacyUserProfileCustomizations.stylesheets', true);