Tools to Organize Browser Tabs for Mac Users

When I read Melissa Dahl’s piece for New York Magazine a few days ago, I had a strong sense of recognition.

Not only do I often feel the same way as she does but, in over a decade of working as a Technologist-for-Hire, I’ve also met so many people like her who feel totally overwhelmed by their digital workspaces. When I sit down in front their computers, I find that they – almost invariably – have a web browser with dozens of tabs open. Sometimes it’s so bad that not even a single character of the title bar is able to be displayed.

“Why don’t you bookmark these pages or, you know, just come back to them from your browser history?”, I’ll ask. “I’m afraid I’ll lose track of where I was!“, they’ll say.

Now keep in mind – they’re telling me this while we’re both sitting there, watching that rainbow pinwheel spin around and hoping that it stops without the browser crashing.

I understand their anxiety: After all, they’re using Safari or Chrome as their To-Do lists, their Outlines, and their Notepads. Each open tab is a reminder of something that needs to be done: A bill to be paid, a gift that they need to buy, an article they need to read. At the pace of modern working life, it isn’t always easy to clean up the mess you’re making… and browsers crash all the time.

So – What should we do?

A New Strategy

There is no magic bullet for staying organized while, at the same time, producing strong and creative work – and so I’m wary of anyone who claims to have a “one-size-fits-all” solution for this.

In fact, I believe that there can actually be some excellent reasons to have a huge sprawl of windows and tabs going. Sometimes, creativity requires that you have all your stuff out in front of you. Inspiration strikes when you can quickly make all sorts of connections and juxtapositions, right?

But I also know this – If you are not actually having one of those productive moments, you are probably carrying a heavier cognitive load than you need to with every tab you leave open. You might not think you’re noticing them but, if you feel a vague sense of accumulating anxiousness while you work, I think your brain is telling you otherwise.

Here’s a strategy that you might consider trying: Prepare some tools which can, at the moment you’re ready, put all those tabs exactly where you need them so you can close those tabs. If most of those tabs are really your to-do list, line them up in one window and then get them into your actual to-do list. I’ve found that if your tools are easy to use, you’ll be more likely to make it a part of your routine.

That’s the key – Getting in the habit of not letting those open tabs accumulate.

You know where this is going, right?

Tools to Organize Browser Tabs for Mac Users

If you’re new to the Apple world, you may not realize that every Mac comes with something called AppleScript. Think of AppleScript as a sort of instruction list that you can give your Mac to perform routine tasks for you. It’s perfect for doing a job like, say, collecting all the links from your open tabs and moving them somewhere else.

The Veritrope.com Code Library has a number of AppleScripts which work with browser tabs. I recently updated a few of them and I thought I’d collect those below for your convenience.

Me being me, though, I couldn’t leave well-enough alone… and so I created a few new ones to go along with this post. New additions include scripts to save your Safari and Chrome tabs into DEVONthink Pro, Apple’s Reminders.app, and OmniOutliner 4 Professional. Even better, I’ve also pre-packaged them as Workflows for all you Alfred users and LaunchBar 6 peeps.

What can I say? I love you guys.

And now – Here is a sortable table filled with tools to help you tame even the most unruly browser window:

BrowserExport to…Individual Tabs / List of TabsAlfred Extension Available?Launchbar Action Available?Link
ChromeOmniFocusListYES!YES!Chrome Tab List to OmniFocus
SafariOmniFocusListYES!YES!Safari Tab List to OmniFocus
SafariEvernoteListYES!YES!Safari Tab List to Evernote
ChromeEvernoteListYES!YES!Chrome Tab List to Evernote
SafariText FileListNONOSafari Tabs to Text File
ChromeText FileListNONOChrome Tabs to Text File
SafariChromeListYES!YES!Open Safari Tabs in Chrome
ChromeSafariListYES!YES!Open Chrome Tabs in Safari
SafariFirefoxListNONOOpen Safari Tabs in Firefox
SafariOmniFocusIndividualNONOSend Current URL from Safari to OmniFocus
SafariEvernoteIndividualNONOSafari URL to Specific Evernote Notebook (with Tags)
SafariEvernoteListNONO(JAPANESE) Save Safari Tabs to Evernote
ChromeDEVONthink ProListYES!YES!Save Chrome Tabs to DEVONthink Pro
SafariDEVONthink ProListYES!YES!Save Safari Tabs to DEVONthink Pro
ChromeRemindersListYES!YES!Save Chrome Tabs to Reminders
SafariRemindersListYES!YES!Save Safari Tabs to Reminders
ChromeOmniOutlinerListYES!YES!Save Chrome Tabs to OmniOutliner
SafariOmniOutlinerListYES!YES!Save Safari Tabs to OmniOutliner

5 Responses to “Tools to Organize Browser Tabs for Mac Users”

  1. Nick June 20, 2014 at 2:25 pm #

    This is awesome. Thanks!

  2. Ryan July 10, 2014 at 12:34 pm #

    Here’s an Alfred workflow for the Current URL to OmniFocus:

    on alfred_script(q)
    tell application "Safari"
        set theURL to (URL of current tab of window 1)
        set theName to (name of current tab of window 1)
    end tell

    tell front document of application "OmniFocus"
        make new inbox task with properties {name:(theName), note:theURL}
    end tell
    end alfred_script

    I have it push a notification to me saying it was successful, for my peace of mind 🙂

    Hope this helps!

    Cheers.

    • Justin Lancy July 10, 2014 at 2:27 pm #

      Thanks Ryan – I’ll probably add this snippet into the Code Library so that others can enjoy it! 🙂