CyberNotes: A Minimalist Firefox

This article was written on May 21, 2008 by CyberNet.

CyberNotes
Web Browser Wednesday

Are you one of those people who like to conserve every square inch of screen space when it’s possible? If so we have a treat for you today! We’re going to demonstrate how you can become the ultimate Firefox minimalist with the help of some extensions and themes. If you implement everything that we have listed below you’ll wonder where half of your browser has gone. You might also go cross-eyed… don’t say we didn’t warn you. ;)

–Themes–

compact firefox.pngThe first major step that a minimalist Firefox user takes is often in changing their theme. By choosing a more compact theme you can eliminate nearly any and all spacing found throughout Firefox, and the end result can save a lot of area in your browser.

The screenshot to the right shows the Classic Compact Firefox theme laid overtop of the classic theme. The double-ended arrows indicate how much space you save by simply applying this theme. There are a few other themes (like miniFox) that are similar, but Classic Compact is really the one that has won the hearts of minimalists around the globe.

–Toolbars & Menus–

There is a lot of “fat” that lies within the toolbars and menus in Firefox. The themes aim to take some pounds off the toolbars, but there are some extensions that can take the minimalist design to a whole new level:

  • Searchbar Autosizer [Homepage]
    Keep the browser’s search box small when it’s not being used. This will let you have a really small search box that expands as you type. That means your Address Bar gets even more room!
  • Faviconize Tab [Homepage]
    You’ll be able to double-click on a tab and have it collapsed down to only it’s icon. Now you won’t feel like such a pig when you have 40 different tabs open.
    faviconize tab.png
  • Personal Menu [Homepage]
    How often do you really use those menus (File, Edit, etc…) anyway? If it’s not very often you can stuff them into a single icon by using this extension. All of the menus will still be accessible, but they will just take an extra click to get to them.
  • Smart Bookmarks Bar [Homepage]
    If you’re not ready to give up your Bookmarks Bar then maybe this extension will help keep things a little more tidy. By default it will only show the icons for the sites located on the Bookmarks Bar, and then when you hover over them it will expand to show the name as well.
    smart bookmarks bar.png

–Status Bar–

I wouldn’t say that the Status Bar is the hugest space consumer, but hey, we’re trying to scrounge up every pixel that’s possible. Right? So we’ve got a few specialized styles and one extension that can clean up your Status Bar a little bit.

  • Mouseover for Clutter [Homepage] Requires Stylish
    This will hide the excessive number of icons that you probably have in the Firefox Status Bar, but they will reappear each time you hover over the bar. That way you’re not really losing any functionality, unless of course one of those icons also serves as some sort of notifier (such as a new mail notifier).
  • Autohide Status Bar [Homepage] Requires Stylish
    Get the Status Bar completely out of the way with this style. Once installed it will create an area that is just one pixel in height, and when you hover over that it will show the Status Bar.
  • autoHideStatusbar [Homepage]
    This is an extension that’s similar to how the previous style operates, except that it goes one step further. With this extension you can set it so that when you hover over hyperlinks it will show the Status Bar, which means you can still see where the links point to. The Status Bar can also be shown when the page is loading so that you can monitor the progress.
    Note: This extension is currently experimental, and you’ll need to login to your Mozilla account before downloading it.

–Overview–

I think you have a pretty good set of tools to work with so that you can be well on your way to becoming a Firefox minimalist. I’m sure many of you have trimmed down your Firefox in one way or another, and I would love to hear how you’ve managed to conserve space in Firefox! Shoot us a comment below with your thoughts.

Copyright © 2010 CyberNet | CyberNet Forum | Learn Firefox

Related Posts:


Change Your Google Talk Status to Away

This article was written on October 29, 2007 by CyberNet.

I absolutely love Google Talk because of its simplicity, and the fact that I’ve got all of my friends using it is a huge plus. There is only one thing that I really dislike with the instant messenger, and it’s that I can’t change my status to away.

A free program called gAlwaysIdle is looking to solve that problem. It provides an option in the Google Talk right-click menu that will let you always have your status set to away, whether or not your are using your computer:

Google Talk Idle

It has three different modes that you can choose from:

  • Normal Idle – Uses the default Google Talk settings
  • Always Idle – You’re always set to idle
  • Never Idle – Makes sure you are never set to away even when you’re not at your computer

As you can see from the screenshot above I was using this on Vista, but anytime I tried to change the status I got a fatal error. The only way to get around this is to run Google Talk as an administrator, or to disable the User Account Control (UAC) all together. My guess is that this program adjusts registry settings on-the-fly, and without the proper permissions in will crash and burn. As soon as I ran Google Talk as an administrator it worked as expected.

I wish that Google Would just implement this feature themselves … it would be so much easier. ;)

gAlwaysIdle Homepage [via Life Rocks]

Copyright © 2010 CyberNet | CyberNet Forum | Learn Firefox

Related Posts:


CyberNotes: Shortcut to Show/Hide Hidden Files

This article was written on July 24, 2008 by CyberNet.

CyberNotes
Tutorial Thursday

arrow Windows Windows only arrow
One of the things that I’ve always done on my Windows computers is have them show all of the hidden files. Some people think I’m crazy because this adds a lot more clutter, but it always seemed as though I frequently had to access files there were otherwise hidden. Sure I liked when some files were out-of-sight because I only ever mess with a handful of them, but the hassle of going into the Windows Explorer options every time I needed to see some hidden files just wasn’t worth it.

After a little research I had come across an article on the PCWorld forum that outlined how I could create a shortcut that would enable or disable hidden files on the fly. If the setting is enabled it would disable it when run, and vice versa. It’s one shortcut that serves as an on/off switch for hidden files. Here’s how you do it:

  1. Open up Notepad and paste in the following text:
    Set sh = CreateObject("WScript.Shell")
    theKey = "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Hidden"
    setHidden = sh.RegRead(theKey)
    If setHidden = 1 Then
    setHidden = 0
    MsgBox "System and hidden files will no longer appear in Explorer.",64,"Hidden File Exchange"
    Else
    setHidden = 1
    MsgBox "System and hidden files will appear in Explorer.",64,"Hidden File Exchange"
    End If
    sh.RegWrite theKey,setHidden,"REG_DWORD"
    Set sh = Nothing
  2. Save the file with any name you want, but make sure to designate the extension to be “.vbs”:
    notepad vbs.jpg
  3. Run the file that you just saved. Give it a few seconds to take affect, but you should see the results without even having to restart Windows Explorer.
  4. If you want you can place this script file anywhere you’d like on your computer, and then you can create a shortcut to it by right-clicking on the file. I recommend placing a shortcut to the file in the Windows Explorer Favorites for fast access from the Favorites menu.

Compatibility: I’ve verified that this works on Windows XP, but it only works on Vista when User Account Control (UAC) is disabled. This is because it needs access to the registry, and Vista doesn’t allow that unless it is run as an administrator. Since it is a VBS file the “Run as Administrator” option does not appear when right-clicking on the file.

By default the script will prompt you with the current setting for the hidden files each time you run the script. That way you know whether you are turning them on or off. If you don’t want to see the prompts just remove the following two lines that I’ve highlighted in the code:

hidden files message box.jpg

Now you are all set with a shortcut that can enable or disable hidden files in Windows Explorer. This should help reduce the clutter you see on a regular basis by keeping the hidden files out-of-sight when they’re not needed, and then pulling them up when you need to make a change. How convenient is that?

Copyright © 2010 CyberNet | CyberNet Forum | Learn Firefox

Related Posts:


CyberNotes: Easily Configure Firefox’s “Hidden” Settings

This article was written on May 30, 2007 by CyberNet.

CyberNotes
Web Browser Wednesday

At first glance it may seem like Firefox lacks a lot of configuration options, hoever, much of the fine tuning lies underneath. Most Firefox power users will know about the about:config window which can sometimes be a tedious tool ,but there are a lot of customizable options located there.

Mozilla actually warns users that they should not change settings in the about:config window unless they really know what they are doing. Often times it is compared to editing the Windows Registry, where one wrong setting can crash Windows.

To help users out we have provided our own guide to configuring Firefox using about:config, which also includes a long list of tweaks. If it just doesn’t seem worth the hassle, then you’ll want to continue reading this article because there are now much easier ways to tweak those “hidden” settings…

—Preferential (Homepage)—

Nogg3r5 pointed out this great extension over in the CyberNet forum. It is a great extension because it takes everything from the about:config and breaks it up into categories. To top it off, they provide a description for all of the entries so that you know what they do without needing to visit Mozilla’s knowledgebase!

After installing the extension you’ll notice a new entry in the Tools menu immediately below the Options choice:

Preferential

Then you’ll be presented with a bunch of collapsed menus which look something like this:

Preferential
Click to Enlarge

You can now start browsing through the settings to find the ones you are looking for. From what I have seen, the largest category of settings can be found in the browser section:

Preferential
Click to Enlarge

This is definitely something that Mozilla should look at including in Firefox as a better way to edit the entries in the about:config screen.

—Configuration Mania (Homepage)—

Now if that still seemed too complicated, you need something that breaks it down even further. How about something that puts the settings in an easy-to-understand interface similar to the existing configuration screen for the Options? Let’s now turn our attention to Configuration Mania!

This extension is cool because it puts a ton of settings together in a way that makes them very easy to understand and manipulate. Before now, almost all of these settings had to be configured through the about:config screen, but now they will almost seem as if they were naturally integrated in Firefox.

Just like the Preferential extension, Configuration Mania has its options located in the Tools menu:

Configuration Mania

Starting up that extension will present you with a screen similar to this one:

Configuration Mania
Click to Enlarge

As you can see this one also has collapsible menus, but it organizes the settings a little nicer. Oh, and don’t be deceived by the small appearance because there are a lot of settings there for you to tinker with. Here is a screenshot of what all the browser settings look like when they’re expanded:

Configmania3
Click to Enlarge

And that is only the settings from one of the 5 tabs! Here are a few more screenshots from the rest of the tabs:

Configuration Mania Configuration Mania Configuration Mania Configuration Mania
Click to Enlarge

As you can see there are a lot of different things available for you to configure and play with, but it will take some time to go through all of the settings presented here. Let us know if you find any you didn’t know about!

Copyright © 2010 CyberNet | CyberNet Forum | Learn Firefox

Related Posts:


WrapUp: Adobe Flash 10.1 Beta, Listen to Entire Albums with Lala, and More

This article was written on November 23, 2009 by CyberNet.

Welcome to the WrapUp by CyberNet. This is a collection of news stories, downloads, and tips that we have collected over the last few days, but never got around to writing about. Don’t forget to send in your own tips, or just leave a comment on this page if you think you’ve got something we should include.

–News–

google chrome os.jpgGoogle Chrome OS
This was a pretty big week for Google, and in the middle of it was their announcement that they were open sourcing the Chrome OS already. They are doing this so that they can start working with partners, the open source community, and developers prior to the launch late next year. Running the new OS isn’t exactly a point-and-click operation, but some sites have already posted instructions as to how you can have it up and running in a virtual machine with very little work.


gmail creator.jpgGmail Creator Thinks Email Will Last Forever
The creator of Gmail, Paul Buchheit, was interviewed by TechCrunch with the topic of whether email was ready to die. They talked about whether something like Google Wave would be enough to kill it. In a nutshell he said that email is not going to fall off the face of the Earth… well, at least not “until robots kill us all.”  


adobe air touch.jpgAdobe Flash Player 10.1 and AIR 2.0 Beta’s Available
Both Beta versions of Adobe’s flagship frameworks sport multi-touch gestures, which will be an important addition as Windows 7 touch-screen machines increase in popularity. They are also both significantly better in performance, or they are at least in the quick checks that I’ve performed.


–News in Brief–

sneak preview calendar.jpgGoogle Calendar Testing “Sneak Preview”
Google Calendar users will be able to enjoy a Labs feature (being rolled out) letting you preview whether an appointment you’re creating conflicts with something else on your schedule.


windows 8.jpgWindows 8 Expected in 2012
Looking at Microsoft’s roadmap it appears as though they will try to stick to a three-year release cycle for Windows 8.


office 2010 mobile.jpgOffice 2010 Mobile Beta Available
Microsoft has posted the mobile version of Office 2010 Beta for anyone running Windows Mobile 6.5.


skype logo.jpgeBay Completes Skype Sale at $2.75 Billion Valuation
eBay has sold off a majority (70%) of their ownership of the Skype software company.


automatic captions.jpgAutomatic Captions in YouTube
Google has employed an automatic speech recognition system on YouTube videos so that users can get closed captioning on nearly all uploads.


rtm calendar.jpgRemember the Milk Gadget for Google Calendar
Remember the Milk (RTM) users can enable a sidebar gadget in Google Calendar for easy task management.


ie9.jpgInternet Explorer 9 Announced
At PDC Microsoft unveiled some of the things that should be expected from IE9, including hardware acceleration.


mininova.jpgMininova Breaks 10 Billion Torrent Downloads
The popular BitTorrent search engine hits the huge 10 billion download milestone.


install silverlight.jpgSilverlight 4 Beta Released
The new version of Silverlight includes huge performance gains as well as support for the Chrome browser.


google image swirl.jpgExplore Images with Google Image Swirl
Google showed off a new way to search for images this week called Google Image Swirl. It tries to group images according to the subject of the photo.


ubuntu music.jpgUbuntu One Music Store
Canonical is working on a music store for their Ubuntu operating system that could compete with iTunes.


google templates.jpgTemplates Available in Google Sites
Anyone looking to create a quick website can find refuge in the new templates offered by Google Sites.


google translate.jpgA New Look for Google Translate
Google Translate can now translate your text as-you-type, and provides phonetic pronunciations for people who can speak languages like Chinese but don’t know how to read/write them.


–Tips, Tutorials, and Reviews–

aruna file upload-1.jpgUse Aruna to Share Files  
Finding a good way to share files with friends can be difficult because of limitations many of them impose, but GoAruna knocks off most of those barriers. You can upload an unlimited number of files as long as each one is under 100MB in size. They can then be shared with anyone that you want through a simple URL. You can even manage the files you’ve uploaded through a convenient interface.  


lala.jpgListen to Entire Music Albums with Lala
There aren’t many sites out there that will let you legally listen to entire songs or albums, but Lala is one of them. The catch? You can only listen to each song once. That is a pretty big limitation, but what’s nice is that this gives you the chance to preview entire albums before you decide whether there’s just a few songs you want to pickup.


quick steps.jpgOffice 2010 “Quick Steps” Feature
One of the new features in Office 2010 Beta is the ability to add “Quick Steps” in Outlook. These are essentially easy-to-create macros that make managing your emails that much better. They can be used to forward/send email, archive emails to a certain folder, and a lot more.


–Tips in Brief–

google chrome logo.jpgHow to Run Google Chrome OS from a USB Drive
This is a guide showing you how you can run Chrome OS on your PC using a USB drive.


grep windows.jpgGrep on Windows
Search multiple files on Windows using the same popular format found in Unix/Linux.


itunes menubar.jpgiTunes in your Mac Menubar
Mac users can control most aspects of iTunes right from the Menubar with this free app.


foobar2000.jpgFoobar2000 v1.0 Beta Available
It’s been over 7 years in development, but version 1.0 of Foobar2000 is on the horizon with features like Windows Media streaming support.


pidgin plugins.jpgAdd 50 Pidgin Plugins with One Download
Grab all of the most popular Pidgin plugins without having to hunt them down one-by-one.


firefox tray.jpgMinimizeToTray for Firefox
The new version of this popular extension now supports Firefox 3.0 and beyond.


faststone image viewer.jpgFastStone Image Viewer 4.0
The update to this image viewer includes performance improvements, Windows 7 compatibility, and more.


http headers.jpgFind “Secret” Messages in Website Headers
This isn’t all that useful, but can definitely be fun!


ubuntu koala.jpgExtensive Ubuntu 9.10 Review
Ars Technica provides an in-depth review of the latest Ubuntu 9.10 operating system.


flv converter.jpgConvert FLV Video to AVI
Convert your favorite Flash videos to a format that is more device-friendly.


seesmic desktop.jpgSeesmic Desktop for Windows
This is one of the first Twitter clients for Windows that doesn’t use Adobe AIR, and the interface fits in better with other aspects of the operating system.


mmkeys.jpgmmKeys.dll Makes iTunes Work with Multimedia Keyboards
This DLL will address compatibility issues between iTunes and multimedia keyboards.


sumatra.jpgSumatra PDF Reader 1.0
Sumatra still keeps things lean in terms of it’s PDF capabilities despite hitting the big 1.0 milestone.


monitor site changes.jpgMonitor a Website for Changes
Get notified when the content on a website changes.


myports.jpgMyPorts Gives You Detailed Info on Open Ports
See what ports are currently being used on your computer, and which applications have them open.


–Downloads–

Copyright © 2010 CyberNet | CyberNet Forum | Learn Firefox

Related Posts:


CyberNotes: Add/Remove Items in the Right-Click Menu

This article was written on October 18, 2007 by CyberNet.

CyberNotes
Tutorial Thursday

The right-click menu (a.k.a. context menu) is one area in Windows that Microsoft refuses to let users customize out-of-the-box. There should be some sort of utility that lets people choose what’s included, and the order that the items are placed in. I don’t think I even use half of the options that are often located in the menu!

And then there is the command that I use the most often which is idiotically buried within a submenu, and lives without a keyboard shortcut: create a new folder. I’ve walked through ways for setting up a hotkey or context menu entry for making a new folder, but this should be an easier way to more prominently display the commands you use the most often.

What you really need is a utility so that you can customize the right-click menu to make it exactly what you want. FileMenu Tools (Download Mirror – version 5.2) might very well be exactly what you’re looking for!

FileMenu Context Menu

As you can see from the screenshot above there are several commands in the right-click menu that are not ordinarily there. That’s all because of FileMenu, which is a free utility that can help you add and remove items from the right-click menu.

–Features–

Once you get FileMenu installed it is pretty self explanatory what you have to do. In the main content area of the program you’ll see a bunch of commands that you can add or remove from the context menu. They can also be reordered by dragging and dropping them around, or by using the arrows in the left sidebar.

FileMenu Commands

The sidebar also has options to add a separator/divider and submenus, which will both help to declutter the right-click menu. In the screenshot above I have added a separator as well as a submenu to show how they work.

Tip: You won’t see any changes to the right-click menu until you hit the green “Commit” button on the top toolbar.

As you’ll find out in a moment there are a lot of different things that you can configure in FileMenu. It’s important that you use the import/export options in the File menu of the program for saving your settings. This makes it a lot easier to duplicate your settings across multiple computers, or to restore the commands in the event that you need to format your computer.

–Specialized Tools–

FileMenu comes with several specialized tools that help make it an indispensable tool. Each of the features I mention below are all accessible through the right-click menu thanks to the program. In reality each of these features are essentially their own little mini applications.

  • Split/join files – This type of thing was a little more useful back in the days of floppies, but there are still some reasons that you may want to split up files.
    FileMenu Split File 
  • Change file time – Modify the creation time, last write time, or last access time.
    FileMenu Change Time
  • Find and replace – Use this to find and replace text in files.
    FileMenu Find and Replace
  • Advanced renamer – This is actually one of my favorite parts of the program. With this you can quickly rename photos, music, and any type of file. It’s not the best file renamer, but it is super nice for quick tasks.
    FileMenu Advanced Renamer
  • Advanced delete – Recursively delete a certain type of file from a folder and subfolders. You can use it to get rid of the pesky thumbs.db files from your computer.
    FileMenu Advanced Delete
  • Synchronize – You can sync the contents of two different folders with this utility. It’s not packed with features, but it’s nice if you’re just looking to do it quickly.
    FileMenu Folder Synchronization
  • Create a new folder – A pretty straightforward way to create a new folder. It prompts you to enter the name of the folder before it is created.
    FileMenu Create Folder 

–Remove Existing Items–

One thing you may notice in Windows is that the right-click menu is different depending on what type of thing your clicking on. FileMenu takes that into account, and lets you remove existing commands based upon those parameters. For example, I can have the “BriefcaseMenu” option (pictured below) show up when I right-click on files, but turn it off for when I right-click on folders.

With FileMenu you can enable or disable several of the existing commands that have been added by Windows or by other applications:

FileMenu Remove Existing Commands 

–Roll Your Own Commands–

FileMenu Custom Command

FileMenu even lets you create customized commands that will only work for certain types of files (according to extension) or just for folders. I can think of a lot of reasons why this would be useful, and the first that comes to my mind is specifying an image editor to show up only for files that have an image-related extension. Then you won’t have to go to the “Open With” command to have a photo open up in your favorite editor.

Tip: To pass parameters to a program just click in the “Arguments” box and press the “…” button to see a list of available parameters.

Or you could use this to simply add shortcuts to your favorite programs. Why not create a submenu that has all of your most used programs in it? That’s what I just got done doing. FileMenu was able to automatically pick up the icons for all of the apps I created shortcuts for, so don’t worry about filling in the icon field. :)

FileMenu Tools Homepage for Windows (Download Mirror – version 5.2)
Thanks to PCWorld for pointing out this great app!

Copyright © 2010 CyberNet | CyberNet Forum | Learn Firefox

Related Posts:


CyberNotes: Google Chrome Tips

This article was written on September 24, 2008 by CyberNet.

CyberNotes
Web Browser Wednesday

Google Chrome has taken the browser market by storm ever since its release a few weeks ago. The only complaint that I’ve really heard about the browser is that it doesn’t support add-ons like Firefox does, but Google has already said that a future version will be covering those bases. It’s already been downloaded over 2 million times, and that number is destined to grow very rapidly once developers are able to create add-ons for it.

If you’ve decided to stick it out with Chrome then we’ve got a few tips and tricks for you that we’ve come across over the last few weeks.

–Keyboard Shortcuts–

Keyboard shortcuts can really help make you more productive when using a web browser, and as expected Google Chrome has plenty of them for you to learn. A full list of keyboard shortcuts can be found here, but these are a few handy ones:

  • Ctrl+[1-8]: Switches to the tab in that position on your tab bar
  • Shift+Esc: Opens the browser’s task manager
  • Ctrl+Shift+N: Opens an incognito window that can be used for private browsing

–About Pages–

about memory.pngGoogle Chrome has several different “about” pages that can be used to access various information. For example, entering about:memory in the address bar will show you a list of running browsers along with how much memory each one is using.

One of the really interesting pages is about:stats that will show you a list of timers and counters used by the browser. It tracks things like how long it takes (in milliseconds) for your browser window to close, the load time of Google Gears, and more. Google OS has a more comprehensive list of the “about” pages available in Google Chrome.

–More Address Bar Results–

Not seeing enough results in the address bar? The browser should probably offer some simple configuration option for users to adjust this, but it doesn’t. Instead you need to modify the desktop shortcut in order to get more results. Once you open up the properties of the shortcut you’ll want to place this on the end of the “target” field:

-omnibox-popup-count=10

The How-to Geek has more detailed instructions on how to do this.

–Change the User Agent–

Doing something as simple as changing the user agent should be a no-brainer in Chrome, but Google wanted to make it a challenge. As Digital Inspiration points out it is very much possible to do, but will require that you use a HEX editor to modify a DLL.

–Backup & Restore a Profile–

Backing up your Google Chrome profile can easily be done by digging into some folders on your computer, but there’s an easier solution. The free Google Chrome Profile Backup app will let you backup and restore Google Chrome profiles as much as you want. It even comes with a nice profile manager so that storing several different profiles is a painless process.

google chrome backup.png

–Portable Google Chrome–

Take the browser with you on a USB drive by downloading this special package that has been put together by a third-party. All of your settings will be stored within a single folder so that you don’t need to worry about your browsing history getting left behind on a different computer.

–Run Google Chrome on Mac or Linux–

I’m sure you’re aware that Google has yet to release a version of Chrome that runs on an operating system other than Windows. CrossOver, the creators of Wine, have taken it upon themselves to bring over the Windows version to other operating systems. There are still some quirks to using this method, like not being able to auto-update the browser, but it works pretty well.

–Make Firefox Look Like Google Chrome–

Do you like the looks of Google Chrome, but don’t want to give up some of your favorite Firefox extensions? This Google Chrome theme for Firefox looks great on all operating systems, and might be just enough for those of you who like Chrome’s appearance.

Chromifox.png

–Overview–

About 4% of our readers are using Google Chrome, and so I’m sure you’ve come up with your own tips and tricks to make the browser even better. Feel free to share your own tips in the comments, and also let us know what’s keeping you using Chrome.

Thanks to everyone who sent in tips!

Copyright © 2010 CyberNet | CyberNet Forum | Learn Firefox

Related Posts:


How to Reduce Firefox’s Memory Usage

This article was written on November 12, 2009 by CyberNet.

It’s a common problem among Firefox power users: you’ve been surfing the web for some time and all of a sudden Firefox’s memory footprint goes through the roof. And although Mozilla’s developers do their best to ensure that Firefox is stable, many people play a part in the browser’s memory leaks without knowing it. So how do you get Firefox to run smoothly again?

firefox addons.jpg

Do you really need that Firefox extension?
In my opinion, Firefox’s support for add-ons is one of its most valuable features, but there’s a catch: the longer Firefox has been installed on your hard drive, the more extensions you install and the slower Firefox becomes. That’s why it’s not a bad idea to uninstall extensions you don’t use. If you want to keep a certain extension around just in case, disable it to prevent it from being loaded on startup.

firefox plugins.jpg

Disable all unnecessary plugins
Aside from your extensions, there are some hidden memory eaters in Firefox that you may want to get rid off: plug-ins you didn’t even ask for. Common plug-ins you might want to disable of include Microsoft Silverlight, Java, Google Update, QuickTime, RealPlayer and Adobe Reader. If you disable the latter, you won’t be able to view PDFs in your browser. Instead, you’ll be prompted with the standard download dialog. Unlike extensions, plugins can be disabled/enabled without restarting your browser.

restart firefox.jpg

Reboot Firefox with a hotkey while saving your tabs
Rebooting Firefox is one of the most effective ways to lower its memory footprint. Originally intended for use by extension developers, QuickRestart does just that. Just press Ctrl+Alt+R to reboot Firefox while conserving your currently opened tabs.

firefox safe mode.jpg

Use Safe mode
Vista Rewired suggests using Firefox’s Safe mode in situations where you just need the basic browser. In Safe mode, all your extensions are disabled. You can find a shortcut to Firefox’s Safe mode in its Start Menu folder. Alternatively, you can launch it with the -safe-mode parameter. Visit Vista Rewired here for more details.

firefox trim on minimize-1.jpg

Hack: save Firefox’s state on your hard drive when minimized
In 2006, Ryan wrote about a way to have Firefox save its state on your hard drive when it’s minimized. This involves creating a setting of the boolean type in Firefox named config.trim_on_minimize with value true. Although this might free up some memory when Firefox is minimized, it may cause a slight delay when you restore Firefox’s main window. If you want to activate this hack, check out the how-to here.

firefox profile.jpg

Start with a clean slate
For that extra speed boost, you should consider starting out with a clean Firefox install. To do this, you’ll need to delete your entire profile folder. If you’re not sure where to find this folder, you might want to read Mozilla’s explanation here. Unless you don’t mind your bookmarks being wiped, ensure that they are backed up. Also note that this will not only delete your bookmarks, but also your extensions, your settings, your saved passwords, your history and so on. That’s a lot of data you’re throwing away, but obviously that’s the reason why wiping your profile is so effective.

Copyright © 2010 CyberNet | CyberNet Forum | Learn Firefox

Related Posts:


CyberNotes: Firefox 3 Tips & Tricks

This article was written on June 25, 2008 by CyberNet.

CyberNotes
Web Browser Wednesday

firefox 3 tips tricks.pngFirefox 3 (review) has been out for just barely over a week now and it has been downloaded over 19 million times according to Spread Firefox. Many of you requested that we assemble a tweaks guide just like we did with Firefox 2, and so that’s exactly what we’ve got in store for you today.

Before we get started with our guide we would like to mention is that we also have a Firefox 3 extension in the works that will be ready for all of you eager testers next week. We’re not going to say too much about it right now other than it’s something that can greatly enhance your productivity. So keep your eyes peeled for more information early next week!

–Table of Contents–

To make the guide a little easier for you to navigate we’ve created a table of contents that highlights all of the tips and tricks covered in this article:

  1. How to use About:Config
  2. Session Restore Saving Frequency
  3. Don’t Search Bookmarks or History in the Address Bar
  4. Increase the Number of Results in the Address Bar
  5. Use Bookmark Tags for Better Address Bar Placement
  6. Get a Firefox 2 Style Address Bar
  7. Manage Search Keywords
  8. Enable Advanced Color Profile Support
  9. Get the Firefox 3 Theme used on a Different OS
  10. Smaller Back Button (Remove the “Keyhole” design)
  11. Supercharge the Smart Bookmarks
  12. Change Default Applications
  13. Change Page Zoom to Text Zoom
  14. Get Notified when a Website Redirects You
  15. Disable Antivirus Scanning
  16. Some Oldies, but Goodies
  17. Overview

–How to use About:Config–

If you’ve been following our site you’re probably already familiar with how the about:config works in Firefox, but since several of these tips utilize the about:config screen I figured it wouldn’t hurt to provide a crash course. So before we dive into the tweaks glance through to make sure you know how to make the adjustments, or just reference this section when you need it.

  1. Start Firefox.
  2. Type about:config into the address bar and press Enter. When you’re presented with the warning screen click the I’ll be careful, I promise button:
    firefox about config warning-1.png
  3. You should see a long list of hidden settings that look meaningless and confusingly complicated:
    firefox about_config.png
  4. Now comes the fun part of actually modifying and/or creating new values:
    • If I tell you that the key already exists then you can type the name of the preference in the Filter box, and it will instantly show only the matching results. Once you find the preference you’re looking for just double-click on it to change the value.
    • If I tell you that the key does not exist you will need to create a new value manually. Don’t be intimidated… it’s not as difficult as it sounds. Just right-click on any entry on the about:config screen, go to the New menu, and choose either string, integer, or boolean depending on what I tell you.
      firefox about config values.png
  5. You may need to restart your browser for some of the options to take effect.
  6. Wanna go back to the way something was before you tweaked it? Any of the preferences can be reset to their default values in the event that something doesn’t work the way you expected it to. This can be done by right-clicking on the particular option in about:config, and selecting Reset. Values that have been changed at one point or another will appear in bold text, and once they have been reset they should no longer be bold.

–Session Restore Saving Frequency–

firefox restore session-1.pngWhenever Firefox crashes it will try to restore all of your open tabs to the way they were. This has come in handy several times for me before, but sometimes I notice that it isn’t able to restore all of my tabs for me.

That’s because Firefox, by default, only saves the session restore data every 10 seconds, but you can configure that time interval to whatever you would like.

  • Name: browser.sessionstore.interval
  • Preference Needs to be Created: No
  • Preference Type: Integer
  • Default Value: 10000
  • Possible values:
    • The number of milliseconds between session restore saving. For example, entering in 1000 would cause the session restore data to be saved every 1 second, whereas a value of 20000 would make it happen every 20 seconds.

–Don’t Search Bookmarks or History in the Address Bar–

One of the big complaints that I’ve heard with the new address bar is that it includes results from your bookmarks and browsing history, instead of just the website addresses you’ve typed into it. While I’m glad to see that the address bar includes bookmarks and history, I know that this can add some unwanted “noise” to the results for some people.

  • Name: browser.urlbar.matchOnlyTyped
  • Preference Needs to be Created: No
  • Preference Type: Boolean
  • Default Value: False
  • Possible values:
    • True – Will only search addresses you’ve entered into the address bar, and will not search your bookmarks or history.
    • False – Will search addresses you’ve typed in, bookmarks, and history

–Increase the Number of Results in the Address Bar–

By default the address bar will always show 12 results in the drop-down menu, which is probably more than enough for most people. If you prefer to see more (or fewer) results you can alter how many items can be displayed with the following setting:

  • Name: browser.urlbar.maxRichResults
  • Preference Needs to be Created: No
  • Preference Type: Integer
  • Default Value: 12
  • Possible values:
    • The number of results you would like to appear in the address bar drop-down menu.

–Use Bookmark Tags for Better Address Bar Placement–

Tagging bookmarks is one of those things that I wasn’t sure I’d use when I first played around with it in early versions of Firefox 3, but since the address bar also includes results from your bookmarks it can come in handy. To demonstrate what I mean I created a fresh profile in Firefox 3. Then I visited our homepage, bookmarked and tagged it with “cybernet,” and then went to Yahoo.com and tagged that with “cybernet” as well.

I visited Yahoo a few more times to make sure that I had visited it more than “cybernetnews.com,” and then when you search from the address bar you’ll notice that it also searches your tags:

firefox bookmark tags-1.png

Since I had visited Yahoo.com more than CyberNetNews.com the Yahoo result showed up as first, and the point of this experiment is to show that you can use the tag system to help manipulate what results show up for certain keywords. If I hadn’t added the “cybernet” tag to the Yahoo.com bookmark it would have never shown up here.

–Get a Firefox 2 Style Address Bar–

I understand that some of you don’t like the new address bar at all, and there’s an extension available for reverting back to the default Firefox 2 address bar behavior. The layout is more compact, the Go button will always be visible, and only addresses that you type into the address bar are included in the results.

firefox old address bar.png

This extension is still experimental, which means you’ll need to login to the Mozilla site before being able to install it. If you don’t have a login you can use a generic one that I’ve created over at Mozilla:

  • Username: firefox@cybernetnews.com
  • Password: cybernetnews

Note: If someone decides to be funny and change the password just let us know. Since we have full control over the email address we can change the password back at anytime.

Thanks to Jann for the tip!

–Manage Search Keywords–

We’ve shown you how to add keywords for pretty much any website, but Mozilla wanted to make it a little easier to add keywords to the sites in the search box. To do this just click the arrow in the search box that is used to display a listing of all your search engines. Then choose the Manage Search Engines option. From here you can manage all of the keywords that are used for the search engines:

firefox search keyword.png

–Enable Advanced Color Profile Support–

Those of you that are photo enthusiasts might enjoy the fact that Firefox has advanced color profile capabilities. It’s not enabled by default because it can cause a 10-15% performance hit for the browser, but if image quality is that important to you this might be something you want to enable. Here’s a great comparison between Firefox 2 and Firefox 3 (with the color profile turned on):

firefox color profile.jpg

  • Name: gfx.color_management.enabled
  • Preference Needs to be Created: No
  • Preference Type: Boolean
  • Default Value: False
  • Possible values:
    • True – Enables color profile support so that the colors appear richer
    • False – Disables color profile support so that you have better performance

[via dria & Lifehacker]

–Get the Firefox 3 Theme used on a Different OS–

Don’t like the default theme that’s included with Firefox 3? There is an abundance of other themes available, but as you’re probably aware Firefox 3 ships with customized themes based upon the operating system that you’re using. The good news is that you can grab the default Mac or Windows themes no matter which operating system you’re using.

–Smaller Back Button (Remove the “Keyhole” design)–

firefox small back keyhole.pngMozilla wanted to make an aspect of their browser stand out from the crowd, and they did so by super-sizing the back button in the browser with a “keyhole” design. That button single handedly makes the navigation toolbar taller than it needs to be, but luckily there’s a quick fix without having to scrap the theme all together.

To remedy this go to View -> Toolbars -> Customize, and check the Use Small Icons box. You should see the back button shrink down to the size of the forward button, just like in the screenshot above.

–Supercharge the Smart Bookmarks–

firefox smart bookmarks-1.pngFirefox 3 includes advanced bookmarking capabilities known as Smart Bookmarks, and they are similar to the automatic playlists that media players, such as iTunes, can generate for you. These Smart Bookmarks can show you things like your most visited sites, recent bookmarks, and even the most visited pages for a specific domain. Here’s a rather comprehensive set of instructions as to how you can create your own Smart Bookmarks.

–Change Default Applications–

Firefox has a nice configuration tool for selecting the default applications for certain types of URL’s and media. And when I refer to “applications” I don’t just mean the programs you have installed on your computer… it also includes web applications such as Gmail and 30Boxes.

If you pull up the preferences for Firefox you should see an Applications tab, and from there you can configure the default applications. Although it’s not there by default Gmail can be configured for mailto links.

firefox default applications.png

–Change Page Zoom to Text Zoom–

Firefox 3 introduced a new type of zooming that scales everything on the page, including the style, images, and text. That way when you zoom in or out it’s a little more like taking a magnifying glass to the whole site, but some people still prefer the old method where Firefox only adjusted the size of the text when zooming. You can re-enable the text-only zoom by going to View -> Zoom, and selecting the Zoom Text Only option.

–Get Notified when a Website Redirects You–

Some websites redirect users from one address to another, and it often happens so quickly that it can be difficult to catch. This could be a bad thing because the site could try to redirect you to a malicious or inappropriate site, but you can setup Firefox 3 to alert you when things like this happen. To enable this feature open up the Firefox preferences, switch to the Advanced -> General tab, and then check the box labeled Warn me when web sites try to redirect or reload the page. Then whenever a site tries to redirect you from one page to another you should see a warning bar like this one:

firefox redirect.png

–Disable Antivirus Scanning–

Firefox virus scanningFor Windows users when Firefox 3 finishes downloading a file it will initiate a virus scan using any antivirus application that the user has installed on the computer. If you download a lot of files (especially large files) this can become a bottleneck for you as you wait for each file to be scanned, especially when many antivirus applications will automatically scan all incoming files. That means each file you download might get scanned twice.

By jumping into the about:config you can enable or disable this setting at your leisure:

  • Name: browser.download.manager.scanWhenDone
  • Preference Needs to be Created: No
  • Preference Type: Boolean
  • Default Value: True
  • Possible values:
    • True – Scans each download with the installed antivirus application
    • False – Does not scan each download with the installed antivirus application

Thanks to xpgeek for the tip!

–Some Oldies, but Goodies–

Most of the stuff that we’ve covered today we’ve never written about before, but we didn’t want to leave out those tips and tricks from the days of Firefox 2 that still work. So here are some of our favorite tweaks from our Firefox 2 configuration guide:

Thanks for the tips Max!

–Overview–

We’ve included a lot of great Firefox 3 tricks here, but there are a lot more that have yet to be discovered. As we come across other great tips we’ll be posting them to the site just like we have been over the last few years. Plus we’re sure that many of you have plenty of your own tips, and hopefully you’ll take the time to share them with us in the comments!

Copyright © 2010 CyberNet | CyberNet Forum | Learn Firefox

Related Posts:


CyberNotes: Auto-hide any Firefox Toolbar

This article was written on November 12, 2008 by CyberNet.

CyberNotes
Web Browser Wednesday

Having toolbars in a browser can be both frustrating and convenient. On one hand they can often cram a lot of useful functionality into a small area, but on the other hand they eat up precious space that could be used for viewing websites. After all, we know what your browser can look like when you’ve installed a few too many toolbars.

I’ve managed to find a happy medium by automatically hiding the toolbars so that they only appear when my mouse hovers over any other toolbar (ex. the navigation/address bar), and that’s what we’re going to show you today. First we’ll go ahead and demonstrate how to do this with just the bookmarks toolbar, and then we’ll walk you through the steps needed to apply this to just about any Firefox toolbar such as the Google Toolbar.

–Auto-hide a Toolbar–

  1. Make sure you have the Stylish extension installed in Firefox.
  2. In the bottom-right corner of the Firefox window you should see the Stylish icon sitting in the Status Bar. Click on the icon, and go to Write Style > Blank Style.
    stylish blank style.jpg
  3. Provide a description for the toolbar that you’re about to auto-hide, such as “Auto-hide the bookmarks toolbar”. In the code box copy and paste the following:

    #PersonalToolbar{display:none;}
    #navigator-toolbox:hover > #PersonalToolbar{display:-moz-box;}

    The “PersonalToolbar” ID refers to the bookmarks toolbar, and when all is said and done your Stylish window should look something like this:
    firefox autohide toolbar.jpg

  4. As soon as you hit Save the changes should take effect immediately. The bookmarks toolbar will be out-of-sight, but it will reappear when you hover over another toolbar (like the address/navigation bar).

–Find the ID of a Toolbar–

Now what about the toolbars who’s ID you don’t know? That’s a little trickier, but it won’t take you long to catch on. The toolbar we’re going to use in this half of the demonstration is the Google Toolbar, and we’ll show you step-by-step how you can find its ID so that you can auto-hide it.

  1. If you’re using Firefox 3 you’ll need to go and download the DOM Inspector since it’s no longer included with the browser. It is bundled with versions of Firefox prior to version 3.
  2. Once it’s downloaded and installed you need to start it by going to Tools > DOM Inspector. This tool will give us the ability to get the ID of any element in the browser, including toolbars.
  3. Go to File > Inspect Chrome Document, and choose the first item in the list (it may say something different than what my screenshot does).
    chrome inspect.jpg
  4. Now in the DOM Inspector click on the icon in the toolbar that has a mouse cursor pointing to a rounded box. Then switch over to the Firefox window and click on an item on the toolbar you want to auto-hide. You should see a red box appear around it as you’re clicking.
    firefox dom inspector-1.jpg
  5. Now if you switch back to the DOM Inspector it will have highlighted the item that you clicked on. We’re looking for the ID of the toolbar itself, and not the item that you clicked on which was likely a button on the toolbar. If you look a little above the item that you clicked on you should see the ID of the toolbar:
    firefox dom inspector id.jpg
  6. Now we just need to plug that ID into the Stylish script that we provided above. So auto-hiding the Google Toolbar would look something like this:

    #gtbToolbar{display:none;}
    #navigator-toolbox:hover > #gtbToolbar{display:-moz-box;}

That’s all there is to it. It may take a little while for you to get the hang of using the DOM Inspector, but it will be worth it.

–Overview–

Now the power is in your hands to auto-hide as many toolbars as you want. This trick will also work for hiding multiple toolbars simultaneously, and they will all appear at the same time when you hover over the navigation bar.

Also, feel free to leave the ID’s of any toolbars you find in the comments below so that you might save other people a little bit of trouble.

Copyright © 2010 CyberNet | CyberNet Forum | Learn Firefox

Related Posts: