Menu
Home
Blog
Add-ons
Forum
Wiki
Developers
Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
app
preferences
browser-prefs.js
Go to the documentation of this file.
1
/* These preferences are from firefox.js */
2
pref
(
"browser.zoom.siteSpecific"
,
true
);
3
pref
(
"browser.zoom.updateBackgroundTabs"
,
true
);
4
pref
(
"browser.EULA.override"
,
true
);
/* songbird has its own EULA dialog */
5
6
/* The privacy prefs below are used by the sanitizer */
7
pref
(
"privacy.clearOnShutdown.history"
,
true
);
8
pref
(
"privacy.clearOnShutdown.formdata"
,
true
);
9
pref
(
"privacy.clearOnShutdown.passwords"
,
false
);
10
pref
(
"privacy.clearOnShutdown.downloads"
,
true
);
11
pref
(
"privacy.clearOnShutdown.cookies"
,
true
);
12
pref
(
"privacy.clearOnShutdown.cache"
,
true
);
13
pref
(
"privacy.clearOnShutdown.sessions"
,
true
);
14
pref
(
"privacy.clearOnShutdown.offlineApps"
,
false
);
15
pref
(
"privacy.clearOnShutdown.siteSettings"
,
false
);
16
17
pref
(
"privacy.cpd.history"
,
true
);
18
pref
(
"privacy.cpd.formdata"
,
true
);
19
pref
(
"privacy.cpd.passwords"
,
false
);
20
pref
(
"privacy.cpd.downloads"
,
true
);
21
pref
(
"privacy.cpd.cookies"
,
true
);
22
pref
(
"privacy.cpd.cache"
,
true
);
23
pref
(
"privacy.cpd.sessions"
,
true
);
24
pref
(
"privacy.cpd.offlineApps"
,
false
);
25
pref
(
"privacy.cpd.siteSettings"
,
false
);
26
27
// What default should we use for the time span in the sanitizer:
28
// 0 - Clear everything
29
// 1 - Last Hour
30
// 2 - Last 2 Hours
31
// 3 - Last 4 Hours
32
// 4 - Today
33
pref
(
"privacy.sanitize.timeSpan"
, 1);
34
pref
(
"privacy.sanitize.sanitizeOnShutdown"
,
false
);
pref
pref("browser.zoom.siteSpecific", true)