Skip to content

Instantly share code, notes, and snippets.

@scriptingosx
Last active August 29, 2015 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scriptingosx/fc82f98632798986a71c to your computer and use it in GitHub Desktop.
Save scriptingosx/fc82f98632798986a71c to your computer and use it in GitHub Desktop.
Firefox Configuration File for USC Labs
// This file sets some default prefs for use at USC Labs
// and locks down some other prefs.
//
// Safari Migration
lockPref("browser.migration.version", 1);
lockPref("browser.places.importBookmarksHTML", false);
lockPref("network.cookie.prefsMigrated", true);
// application updates
lockPref("app.update.enabled", false);
lockPref("app.update.auto", false);
lockPref("extensions.update.autoUpdate", false);
lockPref("extensions.update.enabled", false);
lockPref("browser.search.update", false);
//
// Password Manager
pref("signon.rememberSignons", false);
//
// Default browser check
pref("browser.shell.checkDefaultBrowser", false);
//
// Home page
pref("browser.startup.homepage","http://www.usc.edu/");
pref("browser.startup.homepage_reset","http://www.usc.edu/");
pref("browser.startup.homepage_override.buildID", "20140127194636");
pref("browser.startup.homepage_override.mstone", "35.0.1");
// USC additions
pref("general.config.obscure_value", 0);
pref("general.config.filename", "firefox.cfg");
[XRE]
EnableProfileMigrator=false
@scriptingosx
Copy link
Author

local-setting.js goes in Firefox.app/Contents/Resources/defaults/prefs/

firefox_AA.cfg goes in Firefox.app/Contents/Resources/

override.ini goes in Firefox.app/Contents/Resources/browser/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment