diff --git a/docs/getting-started/clients/browser/index.md b/docs/getting-started/clients/browser/index.md index d9a4e4c8..5f33934e 100644 --- a/docs/getting-started/clients/browser/index.md +++ b/docs/getting-started/clients/browser/index.md @@ -21,8 +21,8 @@ Before you start, you must complete the [Clients repository setup instructions]( The build commands use [Manifest v3](https://developer.chrome.com/docs/extensions/develop/migrate/what-is-mv3) by - default. If you are building for Firefox or otherwise need a Manifest v2 build, you should use - the command `npm run build:watch:mv2` instead. + default. If you are building for a non-Chrome browser like Firefox or Safari, you should use the + command `npm run build:watch:` instead. ::: @@ -194,15 +194,11 @@ The easiest way to develop the extension is to build and debug it using Xcode. 1. Build the extension: ```bash - npm run build:watch:mv2 + npm run build:watch:safari ``` -2. Edit `build/manifest.json`. Move the `nativeMessaging` permission from the `optional_permissions` - section into the `permissions` section -3. Edit `build/popup/index.html`, replace `` to - ``. -4. Open `src/safari/desktop.xcodeproj` in Xcode -5. Run the "desktop" target. +2. Open `src/safari/desktop.xcodeproj` in Xcode +3. Run the "desktop" target. :::note