A tiny macOS app that adds a Go Up button to the Finder toolbar — one click to navigate to the parent folder, just like ⌘↑.
- Native Finder toolbar button that fits the macOS visual style
- Works in every folder — no configuration needed
- Replicates ⌘↑ exactly: navigates the current window, no new tabs
- Works in Open / Save dialogs (same extension, separate instance)
- Zero background processes — the extension is loaded on demand by macOS
- Sandboxed extension, open source, MIT license
- macOS 13 Ventura or later
- Download
OneUp-latest.dmgfrom Releases - Open the DMG and drag OneUp.app to your
/Applicationsfolder - Launch OneUp and click Open Extensions Settings
- Enable OneUp under General → Login Items & Extensions → Finder Extensions
- In Finder, choose View → Customize Toolbar… and drag the Go Up button wherever you like
Gatekeeper warning: OneUp is not yet signed with an Apple Developer certificate. On first launch macOS may block it. Right-click the app → Open → Open Anyway, or run:
xattr -cr /Applications/OneUp.app
git clone https://github.com/elipsoid-cz/OneUp.git
cd OneUp
brew install xcodegen # skip if already installed
xcodegen generate
open OneUp.xcodeprojThen build and run the OneUp scheme in Xcode (⌘R). Sign in with your Apple ID if prompted.
Open OneUp and click Uninstall OneUp… at the bottom of the window. This deletes the helper script, restarts Finder, and moves the app to Trash.
Alternatively, just delete /Applications/OneUp.app — the extension is removed automatically along with the app.
OneUp uses the Finder Sync Extension API — the only Apple-supported way to add buttons to the Finder toolbar. When you click the button:
- The extension runs an AppleScript via
NSUserAppleScriptTaskthat tells Finder's front window to navigate toparent of target - macOS prompts for Automation permission on the first click — after that it works silently
The main app (OneUp.app) is only needed during initial setup. Once the extension is enabled it runs independently and the main app can be quit.
macOS 15.0–15.1 temporarily removed the Finder Extensions UI from System Settings (fixed in 15.2). If you are on 15.0 or 15.1, enable the extension via Terminal:
pluginkit -e use -i io.github.oneup-app.OneUp.ExtensionPull requests are welcome. To regenerate the Xcode project after editing project.yml:
xcodegen generatepython3 scripts/generate_icon.pyMIT — see LICENSE
