Size: 896
Comment:
|
Size: 2466
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
One of the largest reasons I use [http://getfirefox.com Mozilla Firefox] is its huge [https://addons.mozilla.org universe of extensions], scripts, and other add-ons to it behave the way you want it to. I've customized my Firefox installation pretty extensively. | One of the largest reasons I use [[http://getfirefox.com|Mozilla Firefox]] is its huge [[https://addons.mozilla.org|universe of extensions]], scripts, and other add-ons to it behave the way you want it to. I've customized my Firefox installation pretty extensively. |
Line 9: | Line 9: |
* [https://addons.mozilla.org/en-US/firefox/addon/1843 Firebug] * [https://addons.mozilla.org/en-US/firefox/addon/748 Greasemonkey] * [https://addons.mozilla.org/en-US/firefox/addon/60 Web Developer] |
* [[https://addons.mozilla.org/en-US/firefox/addon/1843|Firebug]] * [[https://addons.mozilla.org/en-US/firefox/addon/748|Greasemonkey]] * [[https://addons.mozilla.org/en-US/firefox/addon/60|Web Developer]] |
Line 15: | Line 15: |
* [https://addons.mozilla.org/en-US/firefox/addon/3615 Delicious Bookmarks] * [https://addons.mozilla.org/en-US/firefox/addon/433 Flashblock] * [https://addons.mozilla.org/en-US/firefox/addon/2324 Session Manager] * [https://addons.mozilla.org/en-US/firefox/addon/2108 Stylish] ---- CategoryCategory |
* [[https://addons.mozilla.org/en-US/firefox/addon/3615|Delicious Bookmarks]] * [[https://addons.mozilla.org/en-US/firefox/addon/433|Flashblock]] * [[https://addons.mozilla.org/en-US/firefox/addon/2324|Session Manager]] * [[https://addons.mozilla.org/en-US/firefox/addon/2108|Stylish]] * Automatic Save Folder * ColorZilla * Colt * FireGPG * Fission * Google Gears * Grab and Drag * Link Widgets * Mobile Barcoder * Multiproxy Switch * No Squint * Open in Browser * Read it Later * Selenium IDE (disabled) * Show Keywords * Tabs Open Relative * VeriSign's OpenID Seatbelt * YSlow == 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.http.pipelining.maxrequests || 16 || || || network.protocol-handler.external.mailto || true || || || network.proxy.socks_remote_dns || true || || || nglayout.initialpaint.delay || 100 || || || browser.ssl_override_behavior || 2 ||<|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: {{{#!highlight css /* Font preferences for AwesomeBar dropdown */ .ac-comment { font-size: 100% !important; } .ac-url-text { color: #306090 !important; text-decoration: underline !important; } .ac-url-text[selected="true"] { color: white !important; } /* Monospaced font for AwesomeBar */ #urlbar { font-family: Inconsolata !important; font-size: 17px !important; } }}} |
One of the largest reasons I use Mozilla Firefox is its huge universe of extensions, scripts, and other add-ons to it behave the way you want it to. I've customized my Firefox installation pretty extensively.
This list is current as of Firefox 3.0.
Extensions
Web development
Other stuff
- Automatic Save Folder
- Colt
- FireGPG
- Fission
- Google Gears
- Grab and Drag
- Link Widgets
- Mobile Barcoder
- Multiproxy Switch
- No Squint
- Open in Browser
- Read it Later
- Selenium IDE (disabled)
- Show Keywords
- Tabs Open Relative
VeriSign's OpenID Seatbelt
- YSlow
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.http.pipelining.maxrequests |
16 |
|
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 }