Power User Input on New App

Years ago I made a small Mac app called Go2 and put it in the Mac App Store. It was there on day one when the MAS launched, but it didn’t do as well as I hoped it would. I moved on to other projects, and eventually shut down development of it. Fast-forward a few years, and I discovered that a friend of mine still uses the app every day, and he asked for a couple of updates. Since the codebase was so old, I couldn’t just add the updates he wanted, so I built an entirely new app that for now I’m calling “Moose”.

Moose stores bookmarks, URLs, for anything on your Mac. Websites, file servers, mail messages, FaceTime contacts, OmniFocus projects, etc… It lets you setup Smart Folders and tags.

Then it lets you set a system-wide hotkey to access the bookmarks.

It saves the last four opened bookmarks in the menu for quick access.

Screen Shot 2021-03-29 at 12.07.05 PM

Also dark mode.

Since I put so much effort into it, I’m thinking of putting it back in the app store, but I thought I’d reach out to the MPU community and ask a question. What would you like from an app that could bookmark any URL?

6 Likes

No subscription, for one thing! :grinning:

4 Likes

This looks like a cool concept for an app. A few features that would make sense to me:

  1. (Most obvious) Quickly open the URL from anywhere
  2. Copy/Paste the URL
    • Invoke the app, search, select item, and then based on shortcut (CMD+C or V) it would copy, or paste, the URL into the frontmost window
  3. Shortcut to add the URL from anywhere
    • Maybe script support to be able to pull the URL from the browser window?
1 Like

Wow, I see a great possibility on using it side-by-side with Hook!

From my point of view, robust keyboard shortcut will be great! The layout of Moose reminds me of FSNotes, a great app inspired by nvALT. With that, I am thinking all aspect of app navigatable with keyboard, for example:

  • use ⌘L and/or ⌘F to trigger search. while typing can use ⌃N and ⌃P in menu bar app or ⌘J and ⌘K in main app window to navigate up and down the main list.
  • navigating the sidebar can be done with ⇧⌘J and ⇧⌘K.
  • while in ‘search mode’, ⌘↩ to create new bookmark with typed search query as title, user just need to press tab to navigate to the ‘Bookmark URL’ and ‘Tags’ textfield.

The tag part could make for an interesting app launcher: I have hundreds of apps on my Mac , a lot of them I forgot about their purpose.
If you could come up with a way to bulk import apps into a group (tag) by checking the list of apps installed and showing a window allowing us to select (checkbox) which one to add , it could be interesting.

(And now I am wondering if I could index my apps in DEVONthink coupled with some tags :thinking:, yeah a new rabbit hole !)

That looks intriguing. I would definitely second the need for keyboard access: such an app only makes sense to me if I can be faster with it than by using my usual other means (mostly Alfred). Clicking in the menu bar is going to take too much time since that means that I have to reach for the mouse and I use most apps full screen.

However, make it for instance easily accessible via Alfred for all the custom items that you store, enable some sync (I use two Macs) and I would be very, very interested.

(Only my two cents of course. :slightly_smiling_face:)

1 Like

Thanks all! Lots of good ideas here, I don’t want to promise anything, but I can say that I’ve added a few to OmniFocus. A few notes:

  • Keyboard access is very important, I only built the app because it’d be faster than other ways of getting to the same resource.
  • There’s a preference to set a system-wide hotkey to pop open the status bar menu, search focused, ready to type.
  • I won’t ship without sync. Not in 2021.
  • No subscriptions, my goal is to sell enough copies to be able to buy a new M1 Mac, I’m not making a living off of this.
  • Moose hands off opening the URL to the operating system. So… whatever default app is setup for the URL scheme is the one that will handle it.

Here’s a short screencast of using the Menu Bar, each time the menu pops up I’m hitting my defined hotkey, ⌥⌘Space.

4 Likes

Awesome! Allow me to say it’s a pleasure being able to chat like this with a developer. Your roadmap looks like my exact wish list :grin: thank you for listening, and really looking forward to using it. Keep us posted! :smiley:

1 Like

I would love this. And tagging or even a short notes/description field (optionally displayed, eg as a line or two of smaller italicized text under the link?) and would be great — I have a lot of circumstances in which I need various apps, documents, links, etc. etc. infrequently — and like someone above, it would be great to have a reminder for why I saved it. If it were searchable, so much the better.

Development Update:

  • Preference to hide the Dock icon and use as a Status Bar-only app
  • Added a notes field to the bookmark edit pane, right under the tags
  • Navigate the sidebar with ⇧⌘J and ⇧⌘K
  • Copy the selected bookmark URL with ⇧⌘C
  • In the main window, with the search field focused, use ⌘S to save the current search as a Smart Folder
  • And one I’ve wanted to add for a long time: AppleScript!
tell application "Moose"
	add bookmark "https://talk.macpowerusers.com" with name "MPU Forum"
end tell


tell application "Moose"
	open bookmark "MPU Forum"
end tell

I think things are moving along well.

2 Likes

I’m having difficulty figuring out what this app does. It seems a bit like Hook, which is an app that lets you bookmark anything — URLs, documents, tasks in Things or OmniFocus, etc. But different from Hook in that this app also lets you organize and display those bookmarks in a convenient window. Correct?

1 Like

That sounds about right. I’d saw where it differs is that Hook is all about establishing relationships between objects, and Moose is a library for storing bookmarks.

1 Like

When you’re ready for beta testing, I’d be happy to help.

3 Likes

This sounds like, well, what I wish Hook was. I can see myself relying on a system like this for organizing everything.

But I’d be concerned about futureproofing.

Future proofing is a valid concern. That’s why I’m putting in plaintext import and export, and why there’s no cloud component other than iCloud sync. The idea is that Moose should keep on working for as long as there’s a macOS.

2 Likes

I had an app idea some time ago, which you could integrate and solve a real problem for a lot of users.
Many “power users” try to create links between different tools. (See Sparky’s Project Status Board for example.)
Say you manage your tasks in Things, your notes in Bear or Drafts, store documents and files in your Dropbox or iCloud files and visualize the project in Mindnode.

It would be possible to put the according URLs in the note section of a Things task, but it looks very messy:

Your app could—besides all the bookmarking features—also help to set up custom URL mappings to clean up those quick link collections.

The result could look as follows:

go2://o as a generic command to trigger the look-up of the “real” URL scheme to call. The user should be able to define a group shorthand (e.g. ITP) and go2 could register it as a new parameter to the o(pen) action. The values BEAR etc. are also user defined and just trigger that the corresponding defined URL (the lengthy bear://... one from the first screenshot) is opened in background. Managing the various mappings for the different values is done in the nice interface of the Go2/Moose app.

Sadly, I don’t have the time to build it and your app has already laid out most of it and an integration looks possible.

Let me know what you (and the others) think :slight_smile:

PS: Sorry that I used Go2 in the mock-up screenshot. It could of course also be moose://. However, I would enjoy that the URL would be readable as “go to o(pen) ‘Important Test Project’ in Bear”.

And I agree to this.

And would like to add that an Alfred integration would be wonderful. It’s real inconvenient to manage your own custom links with custom workflows in Alfred. A more user friendly interface to mange those URLs and have them nicely callable with the proper app’s icon (which Go2/Moose seems to do elegantly).

1 Like

Interesting, I’ll think it through.

Universal, Effortless, Contextual, Networked, Bookmarking – Hook

Yep, that’s right @MitchWagner. Hook 2.0 introduced in 2020 became the world’s first truly universal and effortless bookmarking software. We described Hook’s bookmarking here: Universal, Effortless, Contextual, Networked, Bookmarking – Hook.

Hook’s basically like a Swiss army knife for linking. We add new linking features in just about every release. For instance, we recently added support for deep links to PDFs.

We don’t aim to replace other apps however. So if Moose becomes a linkable app, then users will be able to invoke Hook within it, and get the best of both worlds.

Hook 3.0 expected later this month, has a major new set of bookmarking features (again first of their kind). More to come. Hook updates basically follow Hook’s general ‘philosophical’ principles.

3 Likes

Does everyone feel this way? Personally it makes me vaguely uneasy to have the forum pulled into the app requirements/design business.

1 Like