Mozilla Firefox Web ブラウザに設定されている最適化された値をオーバーライドできるのは、システム管理者だけです。最適化された値は、/usr/lib/firefox/defaults/pref/all-multi-user-desktop.js ファイルに存在します。
次のコードは、all-multi-user-desktop.js ファイルの値を示しています。
// Disable "safe browsing" feature that hogs CPU, HDD, etc.
pref("browser.safebrowsing.enabled", false);
pref("browser.safebrowsing.malware.enabled", false);
// Limit the "location-bar suggestions"
pref("browser.urlbar.maxRichResults", 3);
// Disable offline/disk caching of web pages
pref("browser.cache.offline.enable", false);
pref("browser.cache.disk.enable", false);
// Change the default cache:
pref("browser.cache.memory.enable",true);
pref("browser.cache.memory.capacity", 1024);all-multi-user-desktop.js ファイルに存在する最適化された値をオーバーライドするには、新しい値を使用した新規ファイルを /usr/lib/firefox/defaults/pref/ ディレクトリ内に作成します。ファイル名は all-multi-user-desktop.js ファイルよりもアルファベット順で上位にする必要があります。たとえば、ファイルの名前を all-admin.js とすることができます。