von bc » Mi, 09. Mär 2005 18:57
da das hier grad so ne schoene zusammenfassung wird, werde ich mal meine user.js posten, die in meiner letzten batchsetup version2 dabei ist, hab mir da extra die erlaeuterungen mit zusammengesucht. da findet sicher der eine oder andre paar brauchbare infos.
user.js :
// ### Parsing/Rendering Preferences ###
// time to wait before an initial reflow attempt during page rendering Default: 250 Unit: milliseconds
user_pref("nglayout.initialpaint.delay", 500);
// enable timer-based reflows during page rendering Default: true
user_pref("content.notify.ontimer", true);
// time steps for the initial reflows defined by content.notify.backoffcount Default: 120000 Unit: milliseconds * 1000
// Recommendation: do not set this below 100000. Synchronize with nglayout.initialpaint.delay (?) In contrary to what other tweak examples say, setting this to 100 is absurd.
user_pref("content.notify.interval", 750000);
// number of initial reflows during timer-based rendering (?)
// After this number the page is only reflowed when the calculation of the layout of
// larger parts of the page is finalized (?) Default: -1 (never)
user_pref("content.notify.backoffcount", 5);
// Recommendation: keep in synch with nglayout.initialpaint.delay and content.notify.interval
// Default: 750000 Unit: milliseconds * 1000
user_pref("content.switch.threshold", 750000);
// Recommendation: leave on default. Default: 8191
user_pref("content.maxtextrun", 8191);
// enable interruption of parsing to return to the application's event loop from time to time Default: true
user_pref("content.interrupt.parsing", true);
// time after which parsing is interrupted to return to the application's event loop
// Default: 3 * content.notify.interval Unit: milliseconds * 1000
// Recommendation: leave on default. Lowering this might make Firefox more responsive during loading of large
// pages, but might also raise total page load times. If you change this, make it a multiple of content.notify.interval.
user_pref("content.max.tokenizing.time", 2250000);
// ### HTTP Pipelining Preferences ###
// enable pipelining for non-proxy connections. Default: false
user_pref("network.http.pipelining", true);
// enable pipelining over a proxy. Default: false
user_pref("network.http.proxy.pipelining", true);
// maximum number of consecutive requests in one pipeline. Default: 4 Limit: 8
user_pref("network.http.pipelining.maxrequests", 8);
// ### HTTP Connection Preferences ###
// maximum number of total HTTP connections. Default: 24
user_pref("network.http.max-connections", 48);
// maximum number of HTTP connections of any type to a single server. Default: 8
user_pref("network.http.max-connections-per-server", 10);
// maximum number of persistent (keep-alive) proxy connections. Default: 4
user_pref("network.http.max-persistent-connections-per-proxy", 4);
// maximum number of persistent (keep-alive) connections per server. Default: 2
user_pref("network.http.max-persistent-connections-per-server", 4);
// Handling of HTTP Referer Headers. Default: 2
// 0=don't send any, 1=send only on clicks, 2=send on image requests as well
user_pref("network.http.sendRefererHeader", 1);
// time in seconds before an entry in the DNS resolver cache grows stale and is removed.
// Default: 60 Unit: seconds
user_pref("network.dnsCacheExpiration", 300);
// number of entries allowed in the DNS cache before new entries start pushing old ones off the back.
// Default: 20
user_pref("network.dnsCacheEntries", 100);
// Default: 5 minutes (5 * 60) Unit: seconds
user_pref("network.ftp.idleConnectionTimeout", 60);
// seconds
//user_pref("network.http.keep-alive.timeout", 30);
//user_pref("network.http.request.max-start-delay", 5);
//user_pref("network.http.connect.timeout", 30);
user_pref("network.dns.disableIPv6", true);
//port bann, 1,2,3= allowed
//pref("network.security.ports.banned.override", "1,2,3");
// ### Proxy Settings ###
// Configure Proxies to Access the Internet
// 0 = direct 1 = manual 2 = PAC 3 -> mapped to 0
user_pref("network.proxy.type", 0);
// <Protocol> Proxy: hostname or IPv4 is acceptable. IPv6 needs to be tested.
// Port: 0 will cause server:port preference for that manual proxy type to be ignored. 1-65xxx is valid range
user_pref("network.proxy.http", "");
user_pref("network.proxy.http_port", 0);
user_pref("network.proxy.ssl", "");
user_pref("network.proxy.ssl_port", 0);
user_pref("network.proxy.ftp", "");
user_pref("network.proxy.ftp_port", 0);
user_pref("network.proxy.gopher", "");
user_pref("network.proxy.gopher_port", 0);
user_pref("network.proxy.socks", "");
user_pref("network.proxy.socks_port", 0);
// Socks Version: 4 | 5 (default)
user_pref("network.proxy.socks_version", 5);
// Comma-separated list of site or IP ranges where proxy server should be bypassed
user_pref("network.proxy.no_proxies_on", "localhost, 127.0.0.1");
// URL specifying where to find the autoproxy config file. Default: Empty
user_pref("network.proxy.autoconfig_url", "");
user_pref("network.proxy.share_proxy_settings", false);
// externes ftp programm
//user_pref("network.protocol-handler.external.ftp", true);
//user_pref("network.protocol-handler.app.ftp", "c:\...\...ftp.exe");
// ### Security / Warnings / Plugins / Java / Javascript ###
// Set which cookies are allowed to be stored on local computer
user_pref("network.cookie.cookieBehavior", 1);
// Enable OCSP?
user_pref("security.OCSP.enabled", 0);
user_pref("security.OCSP.URL", "");
// Enable Secure Sockets Layer 2 (SSL2)?
user_pref("security.enable_ssl2", true);
// Enable Secure Sockets Layer 3 (SSL3)?
user_pref("security.enable_ssl3", true);
// Enable TLS?
user_pref("security.enable_tls", true);
user_pref("signon.rememberSignons", false);
//Turn off warnings !!!
// Warn before entering a secure area? Default: True
user_pref("security.warn_entering_secure", false);
user_pref("security.warn_entering_secure.show_once", false);
// Warn before entering an insecure area? Default: True
user_pref("security.warn_entering_weak", false);
user_pref("security.warn_entering_weak.show_once", false);
// Warn before leaving a secure area? Default: True
user_pref("security.warn_leaving_secure", false);
user_pref("security.warn_leaving_secure.show_once", false);
// Warn before submitting a form to an insecure area? Default: True
user_pref("security.warn_submit_insecure", false);
user_pref("security.warn_submit_insecure.show_once", false);
// Warn when viewing a page with both secure/insecure elements? Default: True
user_pref("security.warn_viewing_mixed", false);
user_pref("security.warn_viewing_mixed.show_once", false);
//### Plugins Settings ###
user_pref("plugin.default_plugin_disabled", false);
user_pref("plugin.scan.plid.all", false);
// disable some plugins
//user_pref("plugin.scan.Acrobat", "999");
//user_pref("plugin.scan.Quicktime", "999");
//user_pref("plugin.scan.WindowsMediaPlayer", "999");
// To block pop-ups from plugins:
// 0: open allowed
// 1: the opened windows are treated as popups, but they're allowed to open (we limit the number of these types of popups)
// 2: the window is a popup, block it
user_pref("privacy.popups.disable_from_plugins", 2);
user_pref("privacy.popups.firstTime", false); // Default: true
user_pref("privacy.popups.showBrowserMessage", false); // Default: true
//### Java Settings ###
// enable/disable JAVA. Default: True
// falls diese meldung in zusammenhang mit useragentswitcher auftritt -> false nutzen !!!
// "Das Java Plugin für den Netscape Navigator sollte nicht für den MS Internet Explorer
// verwendet werden. Bitte Verwenden Sie das Java Plugin für MS Internet Explorer"
user_pref("security.enable_java", false);
//### Javascript Restriction-Settings ###
// Prevent Javascript from changing window focus
user_pref("dom.disable_window_flip", true);
// Prevent JavaScript from resizing your browser
user_pref("dom.disable_window_move_resize", true);
// Prevent the Close button from being disabled
user_pref("dom.disable_window_open_feature.close", true);
// Prevent the URL bar from being disabled
user_pref("dom.disable_window_open_feature.location", true);
// Prevent the Menu bar from being disabled
user_pref("dom.disable_window_open_feature.menubar", true);
// Prevent the Minimize button from being disabled
user_pref("dom.disable_window_open_feature.minimizable", true);
// Prevent the Bookmarks Toolbar from being disabled
user_pref("dom.disable_window_open_feature.personalbar", true);
// Prevent window resizing from being disabled
user_pref("dom.disable_window_open_feature.resizable", true);
// Prevent scrollbars from being disabled
user_pref("dom.disable_window_open_feature.scrollbars", true);
// Prevent the Status bar from being disabled
user_pref("dom.disable_window_open_feature.status", true);
// Prevent the Title bar from being disabled
user_pref("dom.disable_window_open_feature.titlebar", true);
// Prevent Javascript from hiding toolbar in new windows
user_pref("dom.disable_window_open_feature.toolbar", true);
user_pref("dom.disable_window_status_change", true);
// ### Miscellanous Preferences ###
// Stop reusing active windows.
user_pref("advanced.system.supportDDEExec", false);
// Warn user before turning on caret browsing?
user_pref("accessibility.warn_on_browsewithcaret", false);
// TypeAhead Find Configuration:
user_pref("accessibility.typeaheadfind", true);
user_pref("accessibility.typeaheadfind.linksonly", false);
// suchmasken sound
user_pref("accessibility.typeaheadfind.enablesound", false);
user_pref("accessibility.typeaheadfind.soundURL", "");
user_pref("accessibility.typeaheadfind.flashBar", 0);
// This is the time in milliseconds for the Find As You Type to stop watching for keystrokes:
user_pref("accessibility.typeaheadfind.timeout", 10000);
// use an error page instead of a modal dialog when a connection error occurs. Default: false
user_pref("browser.xul.error_pages.enabled", true);
// Enable automatic image scaling if too big for the screen. Default: true
user_pref("browser.enable_automatic_image_resizing", true);
// Show image placeholders while images are loading/broken? Default: true
user_pref("browser.display.show_image_placeholders", true);
// Prevent hyperlinks from opening new windows? Default: false
// force target="_new" and "_blank" to open in the same window
user_pref("browser.block.target_new_window", true);
// Blinkenden Text deaktivieren
user_pref("browser.blink_allowed", false);
// Display 'favourite icons' in location bar? Default: true
user_pref("browser.chrome.favicons", false);
// Display 'favourite icons' in Bookmarks? Default: true
user_pref("browser.chrome.site_icons", false);
// Show tooltips for toolbars and bookmarks, displaying the bookmark name and URL? Default: true
// wenn auf false-> es werden keine "title"-attribute von links,bildern gezeigt !!!
user_pref("browser.chrome.toolbar_tips", true);
//disable automatic browser check. Default: true
user_pref("browser.shell.checkDefaultBrowser", false);
// Display 'Go' button in browser?
user_pref("browser.goBrowsing.enabled", false);
// Enable What's Related?
user_pref("browser.related.enabled", false);
// last option panel selection
user_pref("browser.preferences.lastpanel", 0);
// Enable inline autocomplete (Requires Browser-restart)
// Autocomplete best match as you type? Default: true
user_pref("browser.urlbar.autoFill", false);
// Just list addresses you've typed in the address bar autocomplete Default: false
user_pref("browser.urlbar.matchOnlyTyped", true);
// nofocus click selects all urlbartext (Requires Browser-restart) Default: true
user_pref("browser.urlbar.clickSelectsAll", false);
// show full path to plugins in about:plugins. Default: false
user_pref("plugin.expose_full_path", true);
// this is a preference to be used while developing scripts that need enhanced privileges.
// It allows potentially security-critical JavaScript to bypass the signing stage. Default: false
user_pref("signed.applets.codebase_principal_support", false);
// autoupdates:
user_pref("app.update.autoUpdateEnabled", false);
user_pref("app.update.enabled", false);
// extensions:
user_pref("extensions.update.enabled", false);
user_pref("extensions.update.autoUpdate", false);
user_pref("extensions.update.autoUpdateEnabled", false);
user_pref("extensions.disabledObsolete", true);
// repeat animated image's
// Where "value" is either normal, once, or none. The default setting is normal,
// but once prevents animated images from looping after its first run,
// while none prevents it from animating at all.
user_pref("image.animation_mode", "once");
// This will allow Firefox to maintain it GUI memory so that the browser window
// will snap right back after being minimized.
user_pref("config.trim_on_minimize", false);
// menu delay
user_pref("ui.submenuDelay", 0);
// Disable chrome cache(XUL.mfl) Default: false
user_pref("nglayout.debug.disable_xul_cache", true);
// minimalste font-groesse
//user_pref("font.minimum-size.x-western", 12);
// Framegröße immer verändern können. Default: false
//user_pref("layout.frames.force_resizability", true);
// Normale Google-Suche in Adressleiste
user_pref("keyword.URL", "http://www.google.de/search?num=100&hl=de&ie=ISO-8859-1&btnG=Google+Search&q=");
// Throbber-URL ändern:
user_pref("browser.throbber.url", "http://www.google.de/search?num=100&hl=de&ie=ISO-8859-1&btnG=Google+Search&q=");
// Confirm migration of IE/other browser bookmarks when creating a new profile?
user_pref("profile.confirm_automigration", false);
// ### Cache Preferences ###
// Compare the page in cache to the page on the network
// 0 = Once per session 1 = Every time I view the page 2 = Never 3 = When the page is out of date (default)
user_pref("browser.cache.check_doc_frequency" , 1);
// Use disk cache? Default: true
user_pref("browser.cache.disk.enable", false);
// amount of disk space assigned to disk cache.
// Default: 50000 Unit: kilobytes
user_pref("browser.cache.disk.capacity", 0);
// Use memory cache? Default: true
user_pref("browser.cache.memory.enable", true);
// amount of memory assigned to memory cache. Unit: kilobytes
// Default: 4096 in older builds, dynamically assigned depending on total amount of memory in newer builds
// Größe des Zwischenspeichers bestimmen (kilobyte):
user_pref("browser.cache.memory.capacity", 65536);
// switch to enable caching of objects served over a secure connection (SSL). Default: false
user_pref("browser.cache.disk_cache_ssl", false);
// path to parent directory of Firefox' disk cache Default: profile folder
// Pfad zum Cache Ordner
//user_pref("browser.cache.disk.parent_directory","");
bc
Zuletzt geändert von
bc am Mi, 09. Mär 2005 20:55, insgesamt 1-mal geändert.