We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f471670 commit 1de55d4Copy full SHA for 1de55d4
README.md
@@ -27,7 +27,9 @@ yarn start
27
28
### Install extensions
29
30
-Load unpacked extensions into `./extensions` then launch the browser.
+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.
33
34
## Roadmap
35
packages/shell/browser/main.js
@@ -237,7 +237,9 @@ class Browser {
237
})
238
239
if (!app.isPackaged) {
240
- await loadAllExtensions(this.session, PATHS.LOCAL_EXTENSIONS, true)
+ await loadAllExtensions(this.session, PATHS.LOCAL_EXTENSIONS, {
241
+ allowUnpacked: true,
242
+ })
243
}
244
245
await Promise.all(
0 commit comments