Skip to content

Finder Extension on macOS 15 Sequoia

aONe edited this page Sep 12, 2024 · 5 revisions

Since macOS 15 Sequoia de Finder Extension is not available in the System Settings and cannot be easily enabled or disabled.

There's currently no official update or solution from Apple (#1464).

How to enable the Finder Extension

Using Keka Helper

There's a workaround implemented in Keka v1.4.4 with the companion app Keka Helper v1.2.0. Just download and install the helper:

Download Keka Helper

Using the Terminal

With two simple steps the extension can be manually enabled or disabled.

  1. In the Terminal.app run the following code:
pluginkit -m CFBundleIdentifier=com.aone.keka.KekaFinderIntegration -vv 
  1. Copy the value of UUID that has a format similar to XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
  2. Execute the following code using the UUID copied in the step 2:
pluginkit -e "use" -u "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"

Replace "use" with "ignore" if you want to disable the extension.

Thanks to @JoshuaFern (#1464) and tathac (756711) for the tips.