CyberNotes: More Firefox Tips and Tricks

This article was written on March 07, 2007 by CyberNet.

CyberNotes
Web Browser Wednesday

There are all kinds of Firefox tips and tricks available on the Web, and when I come across some of the cool ones (many in forums) I jot them down real quick. That way I don’t have to post about just one of the tricks, and instead I can show you a whole compilation of them. Previously I put together lengthy Firefox 2 tweak guide, and none of the tips that I am about to mention below are in that guide.

For starters, I want to mention that a lot of the tweaks below use custom CSS scripts that need to be integrated with Firefox. You can follow these directions on installing those scripts, or you can also use the Stylish extension which makes it a lot easier. When using the extension you just have to open the extension options and select “Write” to create a new script that you want to use:

Stylish

Now let’s move on to the tips…

—Removing Menu Items—

Sometimes the menu items (File, Edit, etc…) just seem to get in the way and you never seem to use them. I’m sure many people, for instance, never use the Help menu. Or, if you have an extension managing your bookmarks, you might never use the Bookmarks menu. It is really simple to hide certain menu items using the Stylish extension mentioned above. Just create a new script and insert the following code:

#file-menu, #edit-menu, #view-menu, #bookmarks-menu, #go-menu, #tools-menu, #helpMenu{
display: none !important;}

That code will actually remove all of the menu items, so you should take out the items in that list that you still want to display.

Firefox Menus 

 

—Change the Search Box size—

For some people the Search Box in the upper-right corner of Firefox is just a little too big. Shrinking it down is very simple to do with Stylish:

#search-container, #searchbar {
max-width: 50px !important;
width: 50px !important; }

The “50px” in both lines represents the width (in pixels) that you want the Search Box to be. I would probably use around 200px because 50px is pretty small.

Firefox Search Bar

 

—Block Blinking Text—

It is a sad day when you come across a site that still uses blinking text to try and get the reader’s attention. I still see them from time to time, but with a simple about:config trick we can prevent it from happening. If you’re not familiar with the about:config screen please see this quick tutorial I put together

All you have to do is open the about:config screen, find the option browser.blink_allowed and double-click on it so that the value will change to false.

Firefox Blink

 

—Make JavaScript HyperLinks Noticeable—

I like to be conscious about the links that I am clicking on for a site, and I’m a even more careful when I see a JavaScript link on a site that I’m not familiar with. For that reason you should think about making the JavaScript links more noticeable, and an easy way to do that is altering the cursor when you hover over them. In this example the cursor will change to a crosshair whenever you hover over a hyperlink that actually contains JavaScript:

a[href^="javascript:"]{ cursor: crosshair; }

The result when hovering over a JavaScript hyperlink would look like this:

Firefox Crosshair Javascript

There are a ton of different cursors that you can use in place of “crosshair”, and a good listing of them can be found here.

 

—Find As You Type Tricks—

Find As You Type is one of my favorite features in Firefox. This feature will start searching a page for text as you type it, which makes finding something specific on a page a lot easier.

I like having the Find As You Type automatically begin as soon as I start typing so on every Firefox installation I always go in and change the setting to enable this:

Firefox Find

Some of you may not like having it work like that, so there is a way that you can use the “Find As You Type” without setting that option. If you want to initiate a Find As You Type just press the forward slash key (“/”) on the keyboard and begin typing your query. You should see a box popup on the bottom of the browser window that displays the characters that are currently being searched for:

Firefox Find

That Quick Find will search all of the text on the page, but what if you’re looking for a link? No problem, instead of typing a forward slash press the apostrophe (‘) key and that will initiate a Quick Find that will only search links. When would this be useful? Sometimes I use it if I have a hard time finding a download link on a site, in which case I’ll do the Quick Find (just searching links) for the word “download.”

 

—Overview—

Those are the tweaks that I have accumulated over the past few weeks, so I hope that you enjoyed them. One of the things that makes Firefox so great is the customizability that it includes. The deeper you dig, the more tricks you’ll find. Even with everything that I have found up to now, I still feel like I have barely scratched the surface.

In time I’m sure I’ll find more, but if you have any of your own tweaks that you use, make sure you let us know in the comments below!

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:


CyberNotes: Google Maps Firefox Extensions

This article was written on August 06, 2008 by CyberNet.

CyberNotes
Web Browser Wednesday

Google Maps is hands down my favorite online mapping service because it has a simplistic design, which in the end makes it load extremely fast. Not only that but they offer features not found on other mapping services, including Street View, Wikipedia integration, and even walking directions.

Naturally when there is a great web service people will start making Firefox extensions that take full advantage of it, and that’s exactly what’s happened with Google Maps. Below we’ve got our top 5 Firefox extensions that push Google Maps (and some other mapping services) to the limits.

–CyberSearch (Homepage)–

CyberSearch is the advanced Google Search extension that we’ve created, and one of the services it supports is Google Maps. What this gives you is full access to the Google Maps database right from the Firefox 3 address bar. When searching for a location it will also provide the address and phone number right there in the title, and clicking on a result will take you to the Google Maps page.

cybersearch local.png

–GDirections (Homepage)–

This extension is pretty simple because all it does is provide a context menu entry to pull up a highlighted address on Google Maps. Just select an address on the screen, right-click on it, go to GDirections and choose the map option. You can also go into the preferences and customize up to three default home/from addresses so that you can get quick directions.

Note: This extension also works with Yahoo! Maps.

gdirections-1.png

–All Your Maps Are Belong To Us (Homepage)–

Not much to see here. This extension pretty much does everything in the background without you ever noticing. Anytime it recognizes a URL pointing to another mapping service (like Yahoo!) it will automatically reroute the links to point to Google Maps. There’s no list of what services it supports, but Yahoo is definitely one of them.

–Mini Map Sidebar (Homepage)–

Do all of your mapping right from the Firefox sidebar with the Mini Map extension. This has an incredible interface setup to navigate, search, and obtain directions all from the comfort of your Firefox sidebar. Plus mapping an address is as simple as dragging and dropping it into the dropzone located below the maps.

Note: This extension also works with Yahoo! Maps.

mini map.png

–Locator (Homepage)–

This is actually very similar to the Mini Map extension mentioned above, but instead of opening in the sidebar it opens in either a new tab or new window. I actually prefer to have the map open in a new tab so that I have a much larger viewing area available to me, and that’s the primary reason I’ve chosen to use this extension over Mini Map.

To get a map of an address all you have to do is highlight the address on the page, right-click, and then use the “Locate on Google Map” option to have it open a map for you.

locator.jpg

–Overview–

As you can see there are a variety of different extensions available that put the full power of Google Maps right at your fingertips. Plus the fact that they make getting a map just a click away can save you a ton of time.

If you’ve got a favorite Google Maps extension be sure to let us know in the comments!

Copyright © 2010 CyberNet | CyberNet Forum | Learn Firefox

Related Posts:


Firefox Image Toolbar Extension

This article was written on August 02, 2007 by CyberNet.

Firefox Image ToolbarYou need the Image Toolbar extension if you’re a Firefox user and find yourself saving or copying images all of the time. It’s actually a simple little thing that reminds me of something Internet Explorer does. With it installed hovering over an image presents you with some of the most common actions for an image: save, copy, print, and information.

The nice thing is that this has a lot of customizable options that put it one step ahead of what Internet Explorer offers. Here are some of the things that you can tweak:

  • Pick the default image folder. Then choose whether you are prompted to enter in a filename, or if it should automatically save the image to that folder.
  • Choose which buttons you want to appear on the toolbar (save, copy, print, info, or folder). You can also remove the text labels and have it use small icons, which I have shown in the screenshot above.
  • Change the duration that you have to hover over the image before the toolbar will be displayed.
  • Pick the minimum width and height of the images that the toolbar can be displayed for. This is nice so that it’s not constantly showing up if your just hovering over an avatar or something. Holding down the CTRL button will override this setting in case you do want the toolbar to be displayed.
  • Pick the location of where the toolbar shows up. By default it will appear in the upper-left corner of the image your hovering over, but you can adjust it so that it is displayed where your mouse is.

Get the Image Toolbar for Firefox

Note: I did test this on a Firefox 3 nightly build and it makes the browser crash every time it starts. So only use this on Firefox 1.5 or 2.

Source: Ghacks

Copyright © 2010 CyberNet | CyberNet Forum | Learn Firefox

Related Posts:


Microsoft Actually Releases a Firefox Extension/Plugin?

This article was written on March 12, 2007 by CyberNet.

I had been wondering what the latest news on Photosynth was so I just jumped over to their blog to find out that almost two months ago they released a Firefox extension/plugin for the service. Previously Photosynth was only available for Internet Explorer but now it can also be used in Firefox with the help of the extension.

When downloading the extension it requires that you are using either Firefox 1.5 or 2.0 and for me the download was 5.5MB in size! That was pretty big, but after that I was all set to play with my new Firefox toy.

Firefox PhotoSynth

Everything seemed to work just as well as the Internet Explorer counterpart, and there is no doubt that Photosynth is quite a remarkable tool. The whole point behind it is to take a bunch of 2D photographs and assemble them together to form a 3D world. The downside, however, is that the technology is still very new and takes at least a few hours, or even days, to produce the desired output for a relatively small area. For this reason the Photosynth team have not begun to let users upload their own photos and utilize the service.

Microsoft has embarked on quite a task that could revolutionize the way we view the pictures we’ve taken. Being able to reconstruct a 3D world from 2D images is something that will probably become an everyday thing in a few years, much the way video sharing has evolved. They are definitely on the right track, so now it is just a matter of optimizing the system so that it is more efficient.

PhotoSynth Homepage

Copyright © 2010 CyberNet | CyberNet Forum | Learn Firefox

Related Posts:


CyberNotes: Make Firefox 3 More Like Safari

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

CyberNotes
Web Browser Wednesday

arrow Mac Mac only arrow
Making one browser look like another has been a trend for ages. More often than not users like the functionality of a browser, but don’t exactly like how it looks on the particular operating system. That’s how I am with Firefox on just about any operating system I use it on, and that’s despite the fact that they’ve redesigned Firefox 3 to take on characteristics of the various operating systems.

In the past we’ve already shown you how you can make Firefox fit in a little better with Windows Vista, and that’s especially true if you install this extension which gives Firefox 3 the Aero glass effect. Today, however, we’re going to jump to the other side of the pond and show you how to make Firefox 3 take on a look that’s more in line with Mac OS X’s Safari browser. We’ve got a few tricks up our sleeve that should get the job done.

–The Theme–

Firefox 3 does include a new theme for Mac OS X that fits in well with the operating system, but it still doesn’t look like Safari. So the first thing that we need to take care of is finding a near-perfect replica of the Safari theme, and we’re in luck because there happens to be one that’s already compatible with Firefox 3. It’s called GrApple Yummy, and it’s as close to Safari as it gets:

CyberNet.jpg

You might recall us having written about this theme before, and it’s important to note that it has a nearly identical twin brother called GrApple Delicious. We won’t bore you with all of the minor differences again, but it’s safe to say that GrApple Yummy is the theme that’s the most Safari like for Firefox 3.

Okay, we’re off to a good start… now let’s move on.

–The Address Bar–

Safari uses the Address Bar to show users how much time a page has until it finishes loading, and it actually looks pretty nice, too. To get this feature all you need to do is install the Fission Firefox extension and you’ll be ready to go.

This is what the Address Bar will look like while loading a page once you have Fission installed:

firefox fission.jpg

–The Status Bar–

Personally I would go crazy in a day’s time if I didn’t have the Status Bar in my browser, but for some odd reason Safari has decided to disable it by default. For the sake of consistency… if you want to ditch the Status Bar just pull up the View menu and uncheck the Status Bar option.

–Resizable Text Areas–

In Safari you can resize text areas, such as the comment box we have located below, simply by grabbing onto the corner of the box and dragging it to the size you desire. Firefox 3 users can enjoy the same experience with the Resizeable Textarea extension.

firefox resizeable textarea.jpg

–Find as you Type–

Safari has a rather slick find-as-you-type feature where it grays out the background as you shuffle around the page looking for specific words. The current selection is not only highlighted in green, but it also bounces up and down to really help it keep you’re attention.

It takes a little bit of work, but as we’ve previously outlined it’s very much possible to get a search feature just like this in Firefox. We also put together a video demonstration in case you want to see it in action.

find as you type.jpg

–Stop / Reload Button–

Once you install the Stop or Reload extension you will notice that a button is missing on your navigation bar. Don’t worry, the stop button will be visible whenever a page is loading, otherwise it will serve as the refresh button. Clever, huh?

stop reload.jpg

–Overview–

Now if you followed through on a lot of the stuff in this article you should find that it’s difficult to distinguish the two browsers when glancing at them. Here, see for yourself:

firefox 3 safari.jpg

Copyright © 2010 CyberNet | CyberNet Forum | Learn Firefox

Related Posts:


CyberNotes: CyberSearch Firefox Extension

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

CyberNotes
Web Browser Wednesday

cybersearch.pngYesterday we announced the new Firefox extension that we launched called CyberSearch (our homepage for CyberSearch). It is based on the original version of AwesomeSearch (now called Searchery), and the reason I decided to create the extension was because I saw how it could make me more productive. Hopefully what I’ve come up with can be useful for you as well.

What is CyberSearch? It lets you perform various types of Google searches right from the address bar in Firefox 3. As you’re typing the extension will send your query to Google, grab the results, and then display them along side the history results that Firefox normally shows.

To make the extension even better we’ve supercharged it with a completely customizable keyword system. If you’re familiar with the built-in Firefox keywords understanding how to use these will be second nature for you. The video demonstration below will help put these in perspective, and show just how powerful they make the extension!

–Video Demonstration–

The best way to demonstrate how CyberSearch works is using a video, and so that’s what we’ve got for you. There are also a bunch of screenshots after the video.

–Features–

  • Supports Multiple Google Services
    You can perform searches and assign keywords to any of the following Google services: Web, Local, Videos, Blogs, News, Books, Images, and Patents.
  • Customizable Keywords
    Pick and choose the keywords that you can remember! You can have one keyword for doing a Google Web search, another for Google News search, and so on. The possibilities are endless!
  • Restrict Searches to a Site
    Using the keyword system you’ll be able to restrict a particular search to a certain site. For example, you can create one keyword that will only return results from Wikipedia while a different keyword will only show results from CyberNet News. Want results from multiple sites using just one keyword? No problem, just separate them by commas!
    Note: This feature is only available for Google Web, Blog, and Image searches.
  • Custom Icons
    Assign any icon to be shown next to the search results for a keyword.
  • Change the Appearance
    You can choose a customized background color for results that are retrieved from Google. That way you’ll know at a glance what’s coming from your history, and what’s coming from the extension.
  • Retrieve Multiple Pages of Results
    A customizable “keyword” is available so that you can even retrieve multiple pages of search results. Checkout the video for more information on how this works.
  • Hide Results when Using a Keyword
    You can optionally have Firefox hide the history results from the address bar when it recognizes that you’ve entered in a keyword. That way you see only the search results when using a keyword.
  • Doesn’t Interfere with Existing Firefox Keywords
    If you already have existing Firefox keywords setup this extension will not interfere with them. Our keyword system is completely separate from the one that is built-in to Firefox.

Here are some screenshots from the configuration section of the extension:

(Click to Enlarge)
cybersearch options 1.png cybersearch options 2.png cybersearch options 3.png cybersearch options 4.png

One thing that we placed throughout the preferences are the small question marks, and you can hover over them at any point to have a feature explained to you.

–Supported Google Services–

Eight different Google services are supported in CyberSearch, and we’re sure you want to know what the results look like in the address bar for each of them. Here’s a screenshot for each of the different types of Google searches that we support:

  • Web Search – Your typical Google search. Opening a result will take you directly the site.
    cybersearch web.png
  • Local Search – Find the address and phone number for any business in seconds! Opening a result will take you to a Google Map that shows where the place is located.
    cybersearch local.png
  • Video Search – Search Google Video and Youtube. Opening a result will take you to that video.
    cybersearch video.png
  • Blog Search – Find blog articles that have been written. Opening a result will take you directly to the article.
    cybersearch blog.png
  • News Search – Pull up news items. Opening a result will take you directly to the article.
    cybersearch news.png
  • Book Search – Find books. Opening a result will take you to the Google Book page for that particular selection.
    cybersearch books.png
  • Image Search – Searches for images, but isn’t all that useful since there is no image preview. Opening a result will take you directly to the image.
    cybersearch image.png
  • Patent Search – Search for patents. Opening a result will take you to the Google Patent page for that particular selection.
    cybersearch patent.png

–Installing CyberSearch–

Like what you see? Then go ahead and download the CyberSearch extension from Mozilla. 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.

–Overview–

Hopefully this extension will be as useful to you as it has been for us over the last week. If you have any questions or recommendations feel free to drop them off in the comments, but as it stands right now this does just about everything we’d like it to. Our initial focus will be on fixing any bugs that people find.

Regarding CyberSearch for other countries: At this time CyberSearch only supports the use of Google.com. We are looking into expanding this extension to support Google services in other countries. We’ve researched this a little bit, and we don’t believe Google’s API permits the use of the varying country’s Google search engine (eg. google.co.uk).

Download the CyberSearch Extension

Copyright © 2010 CyberNet | CyberNet Forum | Learn Firefox

Related Posts:


CyberSearch 0.9.6 Update

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

cybersearch logo 096.jpgLast week we released the CyberSearch Firefox extension, and I can’t believe all of the great feedback we’ve received. Dozens of different sites have written about the extension already, and we’ve received over 2,100 downloads. If you like to follow stats as much as I do then you can head on over to CyberSearch’s statistics page that I’ve made publicly viewable. There you can see a pretty graph of the downloads, and it looks like they’ll periodically update how many active daily users there are. Right now there isn’t much data, but as the extension continues to grow it might be interesting to see things like what operating systems people are running it on.

We’ve already gotten over 60 emails with questions regarding bugs, compatibility issues, and recommendations to make the add-on even better. CyberSearch 0.9.6 addresses all of the bug reports that we’ve gotten up until now, and we appreciate everyone who has sent in quirks they’ve found. If you get a spare moment please stop by the review page and leave your thoughts on the add-on. Hopefully we’ll be able to get out of the experimental stage soon!

Also in this release we’ve incorporated the functionality that the Edit Middle extension offered, and part of the reason we decided to do so was because of a compatibility issue with it. What does this feature do? In Firefox 3 when you edit any text in the address bar it won’t show search results unless your cursor is at the end of the text. For example, if you type “cybernnet” into the address bar and go back to remove an “n” Firefox 3 wouldn’t show any results in the drop-down menu. With the Edit Middle extension (and now with CyberSearch) modifying any text in the address bar will trigger the drop-down menu to appear with matching results.

As far as the bug fixes go here’s a list of the most notable ones this release addresses:

  • Pressing the down arrow to select a result now works. This was a problem for those choosing not to have Google results intermingled with the history results.
  • The “unending” loading icon that some people were experiencing has been fixed.
  • There was a compatibility problem with some extensions, such as GooglePreview. CyberSearch should now play nice with all of the extensions. P.S. This wasn’t entirely the fault of our extension, but it was an easy fix.
  • If you choose to show history results even when a keyword is recognized the extension will now ignore the keyword for history results, too. I think this makes more sense, but I might make it an optional thing in a future release.

Download CyberSearch 0.9.6
CyberSearch Homepage

Copyright © 2010 CyberNet | CyberNet Forum | Learn Firefox

Related Posts:


CyberNotes: The Top 10 URL-Related Extensions for Firefox

This article was written on July 04, 2007 by CyberNet.

CyberNotes
Web Browser Wednesday

URL’s make the Web go round, and depending on how easy or hard they are to remember can make a huge difference as to whether someone will return to a site or not. So it makes sense that URL’s and links are a good item to target when trying to make yourself more productive.

To get us started, I thought I would roll out some interesting stats that you may not know regarding the length of URL’s. Have you ever tried to see how many characters your browser would support in a URL? It’s fine if you didn’t, because one guy did and this was the result:

  • Internet Explorer: The longest URL that’s supported is 2,083 characters
  • Firefox: The longest URL that’s supported is 100,000+ although it stopped showing the characters in the address bar after 65,536 characters.
  • Safari: The longest URL that’s supported is 80,000+ characters.
  • Opera: The longest URL that’s supported is 190,000+ characters, where the author noted that in Opera 9 the URL was still “fully editable, copyable and pasteable” even at 190,000 characters.

So today I want to present some Firefox extensions that will make your life easier when trying to copy or manipulate URL’s and links. Here we go…

–Ones You Probably Know About–

The first thing that I want to point are the extensions that you probably already know about or ones that we have already written about. I decided not to count these against the 10, but thought I would point them out anyways:

  1. Locationbar2 (Homepage)
    This extension has become very popular because it makes the actual domain stand out in the address bar, as well as make different parts of the URL clickable similar to a breadcrumb trail. It was even nominated as a feature that should be included with Firefox 3.
    Locationbar2
  2. Linkification (Homepage)
    Makes text links clickable that aren’t otherwise clickable. For example, someone pastes a hyperlink in a forum and it isn’t clickable since they didn’t use the proper code…Linkification will make that link clickable.
  3. Link Alert (Homepage)
    When you hover over a hyperlink there will be a little icon showing you what type of file it is, or whether the link will open in a new window.
    Link Alert
  4. Snap Links (Homepage / Our Review)
    Lets you draw a box around a group of links and have them all open. It’s really nice when reading news, and is very configurable.
    Snap Links
  5. iReader (Homepage / Our Review)
    Shows a text-based preview of the the site being linked to. It’s similar to the Snap Previews that show the thumbnails, but this is purely text.
    iReader
  6. Next Please (Homepage / Our Review)
    This adds buttons to Firefox that are similar to Opera’s Fast Forward and Rewind. These are especially useful when going through search result pages where clicking the button will take you to the next results page.
    Next Please

–Address Bar–

The Address Bar is undoubtedly the most popular location for a URL to reside, so here are some extensions specific to the Address Bar:

  1. Tab URL Copier (Homepage)
    Ever have a bunch of URL’s that you want to send to someone? With this extension you can copy the URL’s of all open tabs to the clipboard.
    Tab URL Copier
  2. New TabURL (Homepage)
    This extension isn’t unique because it lets you pick the homepage for all new tabs that you create. Instead it is unique because you can adjust the settings so that it will load the URL that’s on the clipboard when you open a new tab.
    New Tab URL
  3. URL Fixer (Homepage)
    Automatically fixes the errors you make when typing in a URL, such as “.con” instead of “.com”. You can set it up so that it notifies you before making any corrections to the URL.
    URL Fixer
  4. MyURLBar_a (Homepage)
    Adds search-by-name capabilities to the address bar, so that you can type the name of the site you want to visit. It will search both your bookmarks and browsing history, with the bookmark results being placed on top.
    MyURLBar

–Hyperlinks–

Hyperlinks are an amazing tool, and with them we can navigate the Web faster. There’s always room for optimization though. :)

  1. TinyURL Creator (Homepage)
    Makes a TinyURL of the site you’re currently on through the use of the right-click menu.
    TinyURL
  2. LinkChecker (Homepage)
    Checks to see whether the links on a page are valid, and highlights them accordingly.
    LinkChecker
  3. Super DragAndGo (Homepage)
    Dragging a hyperlink and dropping it anywhere on the current page will open it up in a new tab. It’s essentially the same thing as holding down the Ctrl key and clicking on the link, but Super DragAndGo makes it a one-handed operation.
  4. CoLT (Homepage)
    Let’s you copy a hyperlink into a specialized format. For example, you can copy a hyperlink into a format that makes it ready to be inserted into a forum. It even lets you create all of your own formats.
    CoLT
  5. All Your Maps Belong To Us (Homepage)
    Translates URL’s to other mapping sites into a Google Maps link. It tries to avoid translating unsupported URL’s and seems to do a fairly good job.

And Last, but Not Least…

I came across one extension on my journey that did something I had never heard about. The extension is called Mobile Barcoder and it creates a 2D barcode (also known as QR Codes) that can be scanned using certain cellphones. By having these barcodes you could quickly scan a URL into your phone so that you didn’t have to type it in.

As of right now this feature is found mostly on Japanese phones, but if you have a phone that supports it, this barcode should take you to our homepage :) :

QR Code for CyberNet News

–Overview–

So there you have it…URL madness! I’m sure there are a lot more useful extensions for managing and manipulating URL’s, so hit us up in the comments below with related extensions!

Copyright © 2010 CyberNet | CyberNet Forum | Learn Firefox

Related Posts:


Foxmarks Beta for Firefox 3

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

foxmarks beta With the release of Firefox 3 Beta 4 the other day it is good to see how many extension developers have been providing updates to prepare the launch of the Firefox 3 browser. The extensions that need the most love and care are those that deal with bookmarks, and that’s because the backend of the bookmarking system in Firefox 3 has been significantly changed.

One of the extensions that I’ve been waiting the longest for is Foxmarks (review). It’s useful because it runs in the background of Firefox, and it will synchronize your bookmarks with a remote server. That way you can access your bookmarks from any computer, or sync them with other Firefox installations. And they have a mobile interface for quick access even on your cellphone or PDA.

Foxmarks is currently testing a version of the extension that is compatible with the pre-release versions of the Firefox 3 browser, but there’s a catch. You have to sign up to be part of the Beta program (must be a registered user), and according to them there is a list of people waiting to get in. If you do sign up to be part of the Beta program be prepared to submit any bugs that you find.

And as their blog points out testers may find that there are issues while using the extension:

There hasn’t been a single report of Foxmarks crashing Firefox beta 4 yet; that version was only released yesterday, but we’ve been impressed by how the quality of Firefox keeps marching forward with each release. Beta 4 may well be stable enough for general use with Foxmarks. We’re keeping our fingers crossed.

There are also reports of occasional performance problems — sometimes sync under Firefox 3 is really fast, and sometimes it’s quite slow. Surprisingly, this variability occurs on the same computer with the same bookmarks within the same session. We’re not sure what might account for the difference yet, but we’re looking into it.

So if you feel like living on the bleeding edge there’s no better combination than downloading Firefox 3 Beta 4, and then signing up to be part of the Foxmarks Beta program. :)

Foxmarks Beta
Kudos to Leland for the heads up!

Copyright © 2010 CyberNet | CyberNet Forum | Learn Firefox

Related Posts: