Archive for the ‘Internet Explorer’ Category
The HTML5 Readiness Chart Highlights How Well Your Browser Handles the Future [Infographic]
Thursday, May 13th, 2010Helvetimail Gives a Minimal Facelift to Gmail [Gmail]
Tuesday, September 15th, 2009
Firefox/Chrome/Opera/Safari/IE: Gmail's already got several great themes, but if you've never been satisfied with Gmail's clutter, the Helvetimail user script transforms Gmail into a Helvetica-based, stripped-down interface.
(Click the image above for a closer look.)
Helvetimail is a logical—if obvious—step in the latest craze of applying minimal designs using the Helvetica font to popular web applications (see previously mentioned Helvetical, Helvetireader, and Helvetwitter). To use the script, you'll need to enable the Minimalist theme in Gmail's themes settings. Then, depending on what browser you're using, you'll have to install the user script. (Firefox users, if you've installed Greasemonkey, just click the user script link on the Helvetimail page to install. For the rest of you, the script's author has instructions for various browsers.)
Helvetimail is probably the least attractive of the Helveti-bunch of user scripts we've seen (I love the look of Helvetical), but if you're a big fan of the user-contributed, minimal Helvetica designs, it's worth a look.
Get Firefox’s Ctrl+K Shortcut in Internet Explorer [Autohotkey]
Monday, June 29th, 2009
Most modern browsers implement the Ctrl+K shortcut key for quickly focusing the built-in browser search box—and now you can use the same shortcut in Internet Explorer as well.
After reading about how to implement the Ctrl+L shortcut key in IE, reader Mike took it on himself to improve that script and add a number of other shortcut keys, including Ctrl+K to focus the search box, and Ctrl+Shift+Enter to automatically append ".org" to the end of anything typed into the address bar.
To use his script for yourself, create a new AutoHotkey script or add the following to your existing script:
#IfWinActive - Windows Internet Explorer ahk_class IEFrame
^k::Send ^e
^l::Send !d
^+Enter::
AutoTrim Off ; Retain any leading and trailing whitespace on the clipboard.
ClipboardOld = %ClipboardAll%
Clipboard = ; Must start off blank for detection to work.
Send {Ctrl Down}ac{Ctrl up}
ClipWait 1
if ErrorLevel ; ClipWait timed out.
return
ClipboardNew = %Clipboard%
StringReplace, ClipboardNew, ClipboardNew, .com, .org
IfNotInString, ClipboardNew, .org
ClipboardNew := ClipboardNew . ".org"
Send %ClipboardNew%{Enter}
Clipboard = %ClipboardOld%
return This script listens for the Firefox-style shortcut keys, and then sends the Internet Explorer specific keys to the window instead, so you can switch between Firefox and IE without constantly hitting the wrong keys by mistake. Great job, Mike!
For more Windows shortcut goodness, check out how to make Win+E open the folder of your choice, learn how to use Caps Lock for hand-friendly navigation, and see how Taskbar Overlord tweaks the Windows 7 taskbar. Brand new to AutoHotKey and its time-saving ways? Peek at our beginner's guide to learn how to add this script, or write your own.
An Exhaustive Look at the Web Browsers of Today and Tomorrow [Browser Wars]
Friday, March 6th, 2009
Maximum PC takes an in-depth look at the stable and beta releases of the big names in the browser wars, rounding up in all 9 incarnations of browser's competing to be your gateway to the web (Firefox 3 and 3.1 beta, Internet Explorer 7 and 8 beta, Opera 9.6 and 10 beta, Safari 3 and 4 beta, and Google Chrome). We recently walked you through our browser speed tests, putting the latest and greatest browsers through the paces, but if you're looking for a more in-depth examination, the MaxPC article is seven pages full of charts and graphs thoroughly evaluating each offering. [Browser Battle: Nine Browsers of Today and Tomorrow Compared]
How Can I Sync Bookmarks Across All Browsers? [Ask Lifehacker]
Friday, February 20th, 2009
Dear Lifehacker,
How can I sync favorites in Opera, IE7, Chrome, Safari, and Firefox? Is there any way to do it, beside manually export everyone and then painfully editing the HTML?
Best Regards from a Daily Reader
Dear Daily Reader,
For Firefox and Internet Explorer, at least, we’ll whole-heartedly recommend the newly IE-friendly and Safari-friendly Foxmarks. It doesn’t have the password support of its Firefox iterations, but it does do an admirably swift job of keeping your bookmarks and toolbar favorites synced up in the background.
As for Chrome and Opera, well, that’s a trickier task. If you’re using all four browsers equally, you might want to consider using the long-standing, well-tested Delicious as your primary bookmarking tool, since its accessible from anywhere, keeps everything in sync with or without your action, and has handy bookmark bar tools for reading and saving bookmarks from any browser. When you import your bookmarks from any browser, they’ll be set to private by default, saving you a whole bunch of work. The minor pain is that new bookmarks can’t be set to private by default (correct me if I’m wrong, readers!), but it’s truly the only way to keep your bookmarks in sync without a lot of import/export/save shuffling.
Unless, of course, one of our readers have a smart solution for shuttling or syncing each browser's HTML bookmark files around—maybe an AutoHotKey script? A clever use of syncing tool Dropbox, similar to how we utilize it as the ultimate password syncer?
Peace and soul,
Lifehacker