-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
user.js
22 lines (16 loc) · 906 Bytes
/
user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true); // for enable userChrome/userContent
user_pref("svg.context-properties.content.enabled", true); // for svg
user_pref("layout.css.color-mix.enabled", true); // for color-mix
// * Available preferences
// user_pref("userChrome.ui-chrome-refresh", true);
// * Color themes, use only one
// user_pref("userChrome.theme-chrome-refresh", true);
// user_pref("userChrome.theme-default", true);
// user_pref("userChrome.theme-material", true);
// * Force enable control animation, because by default respects the user animation disable preference.
// * (Not required if you do not disable animation)
// user_pref("userChrome.ui-force-animation", true);
// * Make the URL bar more compact by reducing its height
// user_pref("userChrome.ui-compact-url-bar", true);
// * Hide menu icons
// user_pref("userChrome.ui-no-menu-icons", true);