Apple - How can I create custom right-click context menu items in macOS?

This is a bit old, but nothing is drastically different in 10.8:

http://hints.macworld.com/article.php?story=20100509134904820

This a simple Service for creating new files the currently-open folder in Finder, using AppleScript and Automator.

Start by launching Automator, and in the chooser that appears, select Service. This will open a new Automator window, set up to create a Service. In that window, do the following: Set the Service to receive selected folders in Finder (the two drop-down menus at the top of the work area on the right). This makes it easier to assign a keyboard shortcut to our service, which we'll do at the end.

Drag and drop the 'Run AppleScript' action (in the Utilities Library) into the work area on the right.

Paste in the following AppleScript, then click the Hammer icon (to compile the code):

on run {input, parameters}
  tell application "Finder"
    set currentPath to insertion location as text
    set x to POSIX path of currentPath
  end tell
  return x
end run

Drag and drop the 'Set value of a variable' action from the Utilities Library, and create a new variable called, for example, CurrentFolder. (Do this by clicking on the drop-down menu.)

Drag and drop the New Text File action from the Text library into the work area. Then drag CurrentFolder from the Variable panel at the bottom of the Automator window to the Where entry of the New Text File action. Click the Options button in the action, and click the 'Show this action when the workflow runs' box. This makes it possible to change the name and extension of the new file.

Save the service as 'Create New File,' or whatever you like. Test your new action using the Services menu in Finder, to make sure it works (select a folder, Control-click, and you should see your new Service at the bottom of the contextual menu).

On the Keyboard Shortcuts tab of the Keyboard System Preferences panel, select Services in the left-hand column, and your new service (it should be in the Files and Folders section) in the right-hand panel. Assign a keyboard shortcut to the new Service by double-clicking to the right of the Service's name.

Switch back to Automator and change the leftmost drop-down menu (at the top of the work area) to No Input, then save the Service again.


Terminal provides Services to open a new terminal window or tab with the current directory set to a folder selected in Finder.

You can enable these Services in

System Preferences > Keyboard > Shortcuts > Services

The services are named “New Terminal at Folder” and “New Terminal Tab at Folder”. Once enabled, they will appear in the Services submenu of the application menu (the one whose title is the name of the current application) and in the Services submenu of the contextual menu.