Skip to content

Commit 1de55d4

Browse files
committed
chore: update extension install instructions
1 parent f471670 commit 1de55d4

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ yarn start
2727

2828
### Install extensions
2929

30-
Load unpacked extensions into `./extensions` then launch the browser.
30+
Navigate to the [Chrome Web Store](https://chromewebstore.google.com/) and install an extension.
31+
32+
To test local unpacked extensions, include them in `./extensions` then launch the browser.
3133

3234
## Roadmap
3335

packages/shell/browser/main.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,9 @@ class Browser {
237237
})
238238

239239
if (!app.isPackaged) {
240-
await loadAllExtensions(this.session, PATHS.LOCAL_EXTENSIONS, true)
240+
await loadAllExtensions(this.session, PATHS.LOCAL_EXTENSIONS, {
241+
allowUnpacked: true,
242+
})
241243
}
242244

243245
await Promise.all(

0 commit comments

Comments
 (0)