electron-devtools-installer
electron-devtools-installer copied to clipboard
Electron v9.0.0
Is there any plan to migrate to the new stable version of Electron?
BrowserWindow.getDevToolsExtensions and BrowserWindow.addDevToolsExtension are deprecated and will be removed.
I already opened a pull request to fix this (#131)
There seems to be a different issue with Electron 9.x at the moment, which does not allow to use extensions, when loading your app using file:// or browserWindow.loadFile. It is not related to this repository, but it might help those who are facing the issue that devtools does not work in 9.x.
I'm using the vue devtools in my electron 9 project and they are working fine. In development I use 'browserWindow.loadUrl("file://...")`
I can confirm that redux dev tools do NOT work in Electron 9.0.4 but do work in 8.3.1
react dev tools is not working either
With https://github.com/MarshallOfSound/electron-devtools-installer/pull/131 now being merged, this now looks like it's an upstream issue with electron and/or the extensions themselves - https://github.com/electron/electron/issues/23662
still not working on Electron 9.1.0 - I opened Electron ticket here
It works on electron v9+ if you install the extensions after the app.on "ready" event, and when passing the following installExtension options { loadExtensionOptions: { allowFileAccess: true } }