Wednesday, November 23, 2005

Firefox - user.js


//
// user.js
//
// for Mozilla Firefox 1.0.7+
//
// by Obi Bok
// ----------
// Gmail: obibok
// http://linuxtuneup.blogspot.com
//
// place in ~/.mozilla/firefox/xxxxxxxx.xxxx/
//

// set search from URL Bar using Google
user_pref("keyword.URL", "http://www.google.com/search?btnG=Google+Search&q=");

// display errors in web pages instead of dialog boxes
user_pref("browser.xul.error_pages.enabled", true);

// force frames to be resizable
user_pref("layout.frames.force_resizability", true);

// disable Find As You Type (Find must be invoked manually)
user_pref("accessibility.typeaheadfind", false);

// disable Find As You Type sound
user_pref("accessibility.typeaheadfind.enablesound", false);

// enable automatic highlight in Find As You Type while typing
user_pref("accessibility.typeaheadfind.autostart", true);

No comments: