Differences between revisions 11 and 13 (spanning 2 versions)
Revision 11 as of 2009-06-28 13:18:11
Size: 2426
Editor: SamatJain
Comment:
Revision 13 as of 2009-07-03 10:42:24
Size: 2812
Editor: SamatJain
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
This list is current as of Firefox 3.0. This list is current as of Firefox 3.5.
Line 6: Line 6:

=== Customization ===

 * [[https://addons.mozilla.org/en-US/firefox/addon/748|Greasemonkey]]
 * [[https://addons.mozilla.org/en-US/firefox/addon/2108|Stylish]]
Line 10: Line 15:
 * [[https://addons.mozilla.org/en-US/firefox/addon/748|Greasemonkey]]
Line 12: Line 16:
 * [[http://code.google.com/speed/page-speed/index.html|Google's Page Speed]]. I previously used [[http://developer.yahoo.com/yslow/|Yahoo's YSlow]], but switched as [[http://code.google.com/p/page-speed/|Page Speed is open-source]]. Functionality is mostly equivalent, and it's not as if said functionality was that important anyway.
 * [[https://addons.mozilla.org/en-US/firefox/addon/271|ColorZilla]]
Line 15: Line 21:
 * [[https://addons.mozilla.org/en-US/firefox/addon/3615|Delicious Bookmarks]]
Line 18: Line 24:
 * [[https://addons.mozilla.org/en-US/firefox/addon/2108|Stylish]]
Line 21: Line 26:
 * Colt
Line 22: Line 28:
 * Colt  * [[https://addons.mozilla.org/en-US/firefox/addon/3615|Delicious Bookmarks]]
Line 25: Line 31:
 * Google Gears  * Flashblock
 * Link Widgets
 * Long URL Please
Line 27: Line 35:
 * Link Widgets
Line 33: Line 40:
 * Selenium IDE (disabled)
 * Show Keywords
 * Session Manager
Line 36: Line 42:
 * VeriSign's OpenID Seatbelt
 * YSlow

One of the largest reasons I use Mozilla Firefox is its huge universe of extensions, scripts, and other add-ons which can make it behave the way you want it to. I've customized my Firefox installation pretty extensively.

This list is current as of Firefox 3.5.

Extensions

Customization

Web development

Other stuff

Preferences

user.js settings I use:

Setting

Value

Rationale

layout.css.dpi

0

layout.spellcheckDefault

2

ui.caretBlinkTime

0

ui.allow_platform_file_picker

false

network.http.pipelining

true

network.http.pipelining.ssl

true

network.http.proxy.pipelining

true

network.protocol-handler.external.mailto

true

network.proxy.socks_remote_dns

true

nglayout.initialpaint.delay

100

browser.ssl_override_behavior

2

Turn off annoying SSL certificate behavior

browser.xul.error_pages.expert_bad_cert

true

browser.backspace_action

1

Chrome

Contents of my userChrome.css:

   1 /* Font preferences for AwesomeBar dropdown */
   2 .ac-comment {
   3   font-size: 100% !important;
   4 }
   5 
   6 .ac-url-text {
   7   color: #306090 !important;
   8   text-decoration: underline !important;
   9 }
  10 
  11 .ac-url-text[selected="true"] {
  12   color: white !important;
  13 }
  14 
  15 /* Monospaced font for AwesomeBar */
  16 #urlbar {
  17   font-family: Inconsolata !important;
  18   font-size: 17px !important;
  19 }

SamatsWiki: DotFiles/Firefox (last edited 2022-08-10 17:27:43 by SamatJain)