Articles by ElGuru

New Firefox 3 Version Numbering

Back in December, it was announced Firefox 3 would be moving away from the traditional four-part numbering (ex Fx 2.0.0.*) to a three-part numbering (Fx 3.0.*). However at that time the numbering scheme was not yet supported on addons.mozilla.org (AMO). With RC of Firefox 3.0 (3.0Pre) coming available (on Minefield Trunk) AMO has made modifications to accept the new production version numbering. Firefox 2: 2.0 – 2.0.0.* Firefox 3: 3.0 – 3.0.* (Note: that with Firefox 3, it’s a three part version number) News Source: Basil’s Bodacious Blog

Read More

Weekly Update 2008-05-12

Here’s an overview of this week’s Update Meeting: Fx 2.0.0.15 – Status: In Progress Code freeze: June 6 Builds start: June 9 QA starts: June 10 Release to beta channel: June 17 Final Release: June 24 Firefox 3 RC 1 QA starts: May 12 Release to beta channel: Final Release: Late May Gecko 1.9 RC 1 – No Report Lightning/Sunbird (Calendar Project) – No Report TBird 2.0.0.14 – Status: RELEASED Major Bug: Bug 431819 – IMAP/POP/SMTP with SSL client auth, Thunderbird repeatedly prompts for client certificate Reported: May 2 Confirmed: May 5 Assigned: May 10 TBird 2.0.0.15 – Currently working…

Read More

Adventures in Safe Mode

You will notice in several places I have this disclaimer/warning: WARNING! The Firefox Extension Guru is an independent beta-tester and is not affiliated with Mozilla Corporation. While most of these tips, tricks, suggestions, etc. are relatively simple to do, there is still a risk of damaging your profile.  Therefore these are recommended for advanced Firefox users and should be attempted at your own risk! Please! Consider backing-up your profile or creating a new profile before doing any testing or experimenting. There is good reason for this as I am about to explain with my Adventure in Safe Mode today. I have spent most…

Read More

Firefox 3.0b5 as ‘Default Browser’

Two months ago on March 11th I announced I would be Making the Switch to Fx 3.0. I did download and install Firefox 3 a couple weeks ago. However, I had not done much with it up until this weekend. Part of this was because I was having issues trying to get my bookmarks over from Firefox 2. The issue had nothing to do with the inability of Firefox 3 to import my Firefox 2 bookmarks. Rather it was I could not locate my Firefox 2 bookmarks within my profile folder. Turns out the profile folder path is a little…

Read More

New Tweaks Section Live!

It has only been a few days since I announced Tweaks Section Redesign Coming Soon (on ffextensionguru.com). I am please to announce the new Tweaks section is now live.  I also have created a direct link (http://tweaks.ffextensionguru.com) to the Tweaks section. The redesign went a lot better than making the transition to Firefox 3.0b5 as my default browser (more on that later).

Read More

Make Active Tab Wider

Simple tweak to make your active tab wider. Using ChromEdit add the following lines to your userChrome.css file: /* Make the active tab wider */ #content tab[selected=”true”] { min-width: 200px !important; } Once you have added these lines, click Save, then Restart; your active tab will be wider than the inactive tabs when Firefox restarts. Notes: You can substitute any value for the ‘200px’. This tweak works for Fx 2 & 3. Tip Source: Eric Wendelin’s Blog

Read More

Remove ‘Live Feed’ Button

Along with the ‘Go’ Button and the Bookmark ‘Star’ (Fx 3) buttons there is also a ‘Live Feed’ button to add clutter to the address bar: To remove the ‘Live Feed’ Button use ChromEdit and add the following lines to your userChrome.css file: /* Remove live feed icon in Address url toolbar */ #feed-button { display: none !important; } Once you have added these lines, click Save, then Restart; the ‘Live Feed’ button will be gone when Firefox restarts. Note: This tweak works for Fx 2 & 3. Tip Source: Eric Wendelin’s Blog

Read More

Remove Bookmark ‘Star’ Button

As if the ‘Go’ Button weren’t bad enough, Firefox 3 adds a Bookmark ‘Star’ Button to the address bar. This ‘feature’ allows you to bookmark the current page you are browsing. This can also be accomplished by pressing CTRL+D (Add Bookmark), selecting Bookmark This Page from either the Bookmarks or Context (right-click) menu. To remove the Bookmark ‘Star’ Button use ChromEdit and add the following lines to your userChrome.css file: /* Remove the Bookmark star */ #star-button { display: none !important; } Once you have added these lines, click Save, then Restart; the ‘Star’ will be gone when Firefox restarts….

Read More

Fx 3: Removing The Search ‘Go’ Button

Here is the text you need to copy into your UserChrome.css file: /*Remove the search button (magnifying glass) */ .search-go-button { display: none !important; } New Source: Eric Wendelin’s Blog

Read More