A simple macOS app that opens Finder and navigates to the folder containing any file you select. Perfect for Google Drive integration - when you want to quickly locate and view Google Drive files in their native folder context within Finder
|
|
- In Google Drive (web), right-click a file
- Select "Open with" → "OpenInFinder" (if configured)
- The file will be downloaded/synced and Finder will open to its location
- Minimum macOS 12.7.6 (Monterey) or later
- Google Drive Desktop App installed on your Mac
- Official Application Launcher for Drive (By Google) Extension installed in Chrome
- macOS 12.7.6 or later
- AppleScript support (built into macOS)
- Xcode Command Line Tools (for building from source):
xcode-select --install
./install.shBoth builds and installs App in your /Applications folder
-
Run the build script:
./build.sh
-
Copy the generated app to your Applications folder:
cp -r OpenInFinder.app /Applications/
-
Register the app with the system:
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/Support/lsregister -f /Applications/OpenInFinder.app
The app is now installed and ready to use!
The app uses AppleScript to:
- Receive the file path as a command-line argument
- Tell Finder to reveal the file at that path
- Activate Finder to bring it to the front
install.sh- Installs the app in your/Applicationsfolder and registers it with the systemInfo.plist- App configuration that makes it accept all file typesbuild.sh- Build script to create the app bundleOpenInFinder.app- The final application bundle
If the app doesn't appear in "Open With" menus:
- Make sure it's in the
/Applicationsfolder - Try running:
lsregister -f /Applications/OpenInFinder.app - Restart Finder:
killall Finder

