Tech ARP Forums

Go Back   Tech ARP Forums > Software Discussion > General Software
Register
FAQ Members List Calendar Arcade Mark Forums Read

Google Web www.techarp.com forums.techarp.com

General Software This is the forum for general discussions about software.

Reply
 
LinkBack Thread Tools
Old 10th Dec 2008, 11:34 AM   #1 (permalink)
Just Started
 
Ischemia24's Avatar
 
Join Date: 11 Oct 2008
Location: Indianapolis
Posts: 55
Reputation: 104
Ischemia24 will become famous soon enoughIschemia24 will become famous soon enough
Rep Power: 0
Default 8 lesser known Firefox features

Article by Logan Kugler, originally published on PCMag.com

The latest version of Mozilla's popular open-source browser enjoyed one of the most successful launches in software history, with a record-setting 8.2 million downloads the first day it was available. With the ability to drastically expand the browser's functions using plug-in extensions and Greasemonkey scripts, many of Firefox 3's built-in features are overlooked. Here are eight handy things you can do with Firefox, ranging from tiny tweaks to hugely powerful capabilities, all with nary an extension to install.

1. Duplicate tabs with drag-and-drop.
Duplicating tabs is a piece of cake: Simply hold the Ctrl key while dragging the tab you want to duplicate to an empty space on the tab bar.

2. Minimize the toolbar.
Free up a little extra screen real estate by getting rid of the big, round "Back" button and replacing it with a more streamlined control. Right-click the toolbar, choose Customize, and select Use small icons. The new controls are perfectly functional but smaller, allowing the toolbar to shrink and leaving more room for viewing sites.

3. Use smart bookmarks.
Smart bookmarks are live bookmarks that don't just refer to particular sites but actually generate live lists of sites according to parameters you define. For example, you might have a smart bookmark that lists the 10 sites you visit most often, or the last 20 sites you've visited with a particular keyword in their title.

To create a smart bookmark, select Organize Bookmarks from Firefox's Bookmarks menu. In the window that opens, select Bookmarks Menu in the left-hand pane, then click Organize in the toolbar at the top and New Bookmark in the drop-down menu. Give your smart bookmark a descriptive name, such as "10 Most Recent Bookmarks." In the Location field, you're going to enter in a line of code telling the smart bookmark what to do. For the 10 sites you bookmarked most recently, you'd enter: place:queryType=1&sort=12&maxResults=10 . There are dozens of parameters you can use; Mozilla's developer site includes a list of commands you can use in smart bookmarks. Here are a couple of the most useful:

* The 10 sites you've visited most recently (some installations of Firefox come with this smart bookmark already in place on the Bookmarks toolbar): place:queryType=0&sort=8&maxResults=10

* The 10 most visited sites with some search term in them: place:queryType=0&sort=8&maxResults=10&terms=keywo rd (replace "keyword" with your desired term)

4. Send e-mail via Yahoo! Mail or Gmail by default.
Normally, clicking on an e-mail address on a Web page will open up a new e-mail using your default e-mail program. If you'd rather use Yahoo! Mail, open up Options under Firefox's Tools menu, select the Applications tab, and scroll down to the mailto: entry. Select Use Yahoo! Mail and click OK.

Gmail is not included as a built-in option in every installation of Firefox, but if yours doesn't have it, you can add Gmail easily enough. Skip the Options dialogs for now and instead type about:config in Firefox's address bar and hit Enter. In the Filter field, type gecko.handlerServiceAllowRegisterFromDifferentHost . Actually, you can simply type gecko and find the entry in the filtered list. Double-click the gecko.handlerServiceAllowRegisterFromDifferentHost entry to change it to True.

Next, cut-and-paste this line into the address bar and hit Enter: javascript:window.navigator.registerProtocolHandle r("mailto", "https://mail.google.com/mail/?extsrc=mailto&url=%s","Gmail")

A message will appear at the top of the browser window asking if you want to add Gmail as an application. Now, repeat the process above for choosing Yahoo! Mail, but select the new Use Gmail option instead.

5. Change or remove the Close tab buttons.
By default, Firefox 3 puts an X on each tab, similar to the X button that closes an application. You can remove this button, or see it only on the tab you're currently viewing. Open about:config again and enter browser.tabs.closeButtons in the Filter field. Enter one of the following values depending on the behavior you prefer:


* 0 (Zero) Close button only on the active tab.

* 1 (Default) Close buttons on every tab.

* 2 No close buttons.

* 3 Single close button at the end of the tab bar, instead of on the tabs themselves.

6. Change the behavior of the Awesome Bar.
Mozilla has dubbed Firefox 3's address bar the "Awesome Bar" because of the useful suggestions it makes as you type. By default, the Awesome Bar bases its recommendations on your recent history, pages you've tagged, and your bookmarks. You can change the way the Awesome Bar acts in the configuration page. Open about:config and change the following values, depending on the features you want:

* To disable the Awesome Bar entirely and revert to Firefox 2–like functionality, change the value of browser.urlbar.maxRichResults to -1.

* To allow the Awesome Bar to recommend only sites whose address you've typed directly into the address bar, change browser.urlbar.matchonlytyped to TRUE.

* To remove unvisited bookmarks from the pool of recommendations, change places.frecency.unvisitedBookmarkBonus to 0 (zero).

* To remove all bookmarks from the Awesome Bar, change both places.frecency.unvisitedBookmarkBonus and places.frecency.bookmarkVisitBonus to 0 (zero).

7. Search any site from the address bar with smart keywords.
The smart keyword function allows you to create searches for any site with a search engine, and trigger the search from the address bar using your choice of keyword. For example, you could create a smart keyword "me" to search the archives of your own site. If you wanted to see if you'd ever written about cat juggling, you'd type me cat juggling into the address bar and Firefox would return the results from your own site's search page. Visit the site you want to search and right-click its search box, selecting Add a keyword for this search. In the window that pops up, add a short description of the search and enter a short, memorable keyword that you'll use to trigger it. For example, to create a smart keyword for PCMag.com, I visited the home page, right-clicked the search field, opened the smart keyword window, entitled my search PCMag.com and then entered the keyword pc as my search keyword. Now, if I want to search for something—say, laser printers—I just type pc laser printers and the search is run.

8. View your saved passwords for any page.
To view the passwords associated with any site, go to the log-in page and right-click anywhere on the page. Select View Page Info, and then the Security tab. Click View Saved Passwords. Another window will pop up showing the usernames associated with that site. Click Show Passwords to see the passwords for each username.

If you want to view all of your saved usernames and passwords, open Options under the Tools menu and select the Security tab. Click Saved Passwords to open a list of every site you've ever saved a password for. Again, click View Passwords and the list will display all of your passwords. You can't print this list, but you can just as easily take screenshots if you want to print out your passwords for safekeeping. Isn't this a huge security hole?, you may ask. Why yes, it is. Knowing how easy it is for anyone with access to your PC to view all your passwords, maybe you'd like to password-protect your passwords. In the Options | Security tab, click Use a master password and enter a password. Now this password will have to be entered any time you or anyone else tries to view saved passwords. You'll be asked to enter your master password every time you open Firefox; without it, Firefox won't automatically enter saved passwords for you. Make sure you don't forget this one!

Last edited by Ischemia24 : 10th Dec 2008 at 09:47 PM. Reason: Enhanced readability, missing heading for #5
Ischemia24 is offline   Reply With Quote
SPONSOR

Old 10th Dec 2008, 03:07 PM   #2 (permalink)
zy
Dead
 
zy's Avatar
 
Join Date: 16 Dec 2002
Location: Buffalo NY / Penang MY
Posts: 13,336
Reputation: 2158
zy has a reputation beyond reputezy has a reputation beyond reputezy has a reputation beyond reputezy has a reputation beyond reputezy has a reputation beyond reputezy has a reputation beyond reputezy has a reputation beyond reputezy has a reputation beyond reputezy has a reputation beyond reputezy has a reputation beyond reputezy has a reputation beyond repute
Rep Power: 41
Default

this is good stuff
__________________

zy is offline   Reply With Quote
Old 10th Dec 2008, 09:40 PM   #3 (permalink)
Super Active
 
lee_what2004's Avatar
 
Join Date: 28 Dec 2007
Location: Melaka
Posts: 1,313
Reputation: 1106
lee_what2004 has much to be proud oflee_what2004 has much to be proud oflee_what2004 has much to be proud oflee_what2004 has much to be proud oflee_what2004 has much to be proud oflee_what2004 has much to be proud oflee_what2004 has much to be proud oflee_what2004 has much to be proud oflee_what2004 has much to be proud of
Rep Power: 14
Default

woah. never know number 4
__________________
Once a wise-man said :
Chapter 1: Don't ever compare if you want to stay constant.....
Chapter 2: Whatever you have done in the internet, you will never get away from it...
Chapter 3:To be continued after I thought another one
lee_what2004 is offline   Reply With Quote
Old 11th Dec 2008, 08:04 AM   #4 (permalink)
Getting there
 
alyy8128's Avatar
 
Join Date: 22 Jan 2006
Location: Senai Johor
Posts: 154
Reputation: 116
alyy8128 will become famous soon enoughalyy8128 will become famous soon enough
Rep Power: 5
Default

Sounds good. But the theme i like is still not available in FF3. Will still need to wait for a while before i upgrade to FF3.
__________________
愿:世界和平
alyy8128 is offline   Reply With Quote
Old 11th Dec 2008, 12:38 PM   #5 (permalink)
Super Active
 
Zenphic's Avatar
 
Join Date: 23 Apr 2006
Location: Quebec, Canada
Posts: 1,098
Reputation: 467
Zenphic is a glorious beacon of lightZenphic is a glorious beacon of lightZenphic is a glorious beacon of lightZenphic is a glorious beacon of lightZenphic is a glorious beacon of light
Rep Power: 9
Default

Some interesting tips you got there, but I doubt I'd ever use them. All I need is QuickDrag to gimme the feature I desperately need
__________________
E2160 @ 1.8Ghz (0.95V) | XFX 650i Ultra | 2x1GB Crucial Ballistix DDR2-800 | Gigabyte GeForce 6600 | Hitachi Desktar T7K250 250GB | CM Mystique 632 | 2x Noctua NF-S12 800RPM | CM RPP 550W
Zenphic is offline   Reply With Quote
Old 11th Dec 2008, 12:44 PM   #6 (permalink)
Active
 
kayFX's Avatar
 
Join Date: 4 Sep 2004
Location: in my room
Posts: 633
Reputation: 253
kayFX is a jewel in the roughkayFX is a jewel in the roughkayFX is a jewel in the rough
Rep Power: 8
Default

i like the awesome bar function.. sounds cool also, 'awesome bar'..
__________________
my gaming gear:
steelseries Siberia | Logitech MX518 | Everglide Titan DKT edition | Microsoft SideWinder X6 | steelseries Ikari Optical
kayFX is offline   Reply With Quote
Old 11th Dec 2008, 03:51 PM   #7 (permalink)
Administrator
 
Chai's Avatar
 
Join Date: 6 Oct 2002
Location: Maranello
Posts: 27,884
Reputation: 4630
Chai has a reputation beyond reputeChai has a reputation beyond reputeChai has a reputation beyond reputeChai has a reputation beyond reputeChai has a reputation beyond reputeChai has a reputation beyond reputeChai has a reputation beyond reputeChai has a reputation beyond reputeChai has a reputation beyond reputeChai has a reputation beyond reputeChai has a reputation beyond repute
Rep Power: 81
Default

I hated awesome bar so much, and it was difficult to change back to Firefox 2 style.
__________________
Chai (Contributor & Forum Admin)
http://www.techarp.com/
Chai is offline   Reply With Quote
Old 17th Dec 2008, 06:56 PM   #8 (permalink)
Hold me back! I can't stop posting!!!
 
Papercut's Avatar
 
Join Date: 14 Jul 2004
Location: Singapore!
Posts: 5,107
Reputation: 2557
Papercut has a reputation beyond reputePapercut has a reputation beyond reputePapercut has a reputation beyond reputePapercut has a reputation beyond reputePapercut has a reputation beyond reputePapercut has a reputation beyond reputePapercut has a reputation beyond reputePapercut has a reputation beyond reputePapercut has a reputation beyond reputePapercut has a reputation beyond reputePapercut has a reputation beyond repute
Rep Power: 36
Default

Quote:
Originally Posted by Chai View Post
I hated awesome bar so much, and it was difficult to change back to Firefox 2 style.
I actually followed their suggestion to give it several days to build up a history before deciding whether or not to continue use it, and I do think it has some merits over the normal address bar

Anyway I found the last tip quite useful so thanks to the OP
__________________
"Use in a cool dry place away from direct sunlight. Keep out of reach of n00bs. Overclock within 24 hours of opening.
Do not read instructions before proceeding, do not use only as directed. May cause frustration, late nights and empty wallets.
If symptoms persist please consult your hardware professional."
Papercut is offline   Reply With Quote
Old 18th Dec 2008, 02:51 AM   #9 (permalink)
Administrator
 
Chai's Avatar
 
Join Date: 6 Oct 2002
Location: Maranello
Posts: 27,884
Reputation: 4630
Chai has a reputation beyond reputeChai has a reputation beyond reputeChai has a reputation beyond reputeChai has a reputation beyond reputeChai has a reputation beyond reputeChai has a reputation beyond reputeChai has a reputation beyond reputeChai has a reputation beyond reputeChai has a reputation beyond reputeChai has a reputation beyond reputeChai has a reputation beyond repute
Rep Power: 81
Default

I prefer using the location bar as my frequently visited sites. But I don't like the priority set by the awesome bar. Too many unwanted sites in the list, and it's too big, having icons and all.
__________________
Chai (Contributor & Forum Admin)
http://www.techarp.com/
Chai is offline   Reply With Quote
Old 18th Dec 2008, 09:49 AM   #10 (permalink)
Newbie
 
Join Date: 17 Dec 2008
Posts: 11
Reputation: 0
JTech is an unknown quantity at this point
Rep Power: 0
Default

Thanks for the tips there were a few I didn't know.
JTech is offline   Reply With Quote
Reply


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Get Vista's Best Features in XP Zenphic General Software 7 21st May 2008 11:02 AM
Firefox 2.0 features hyper_raider General Software 27 12th Feb 2006 10:40 PM


All times are GMT +8. The time now is 04:54 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Copyright © 1998-2009 Tech ARP. All rights reserved.