electron-devtools-installer icon indicating copy to clipboard operation
electron-devtools-installer copied to clipboard

Electron v9.0.0

Open sirtimid opened this issue 5 years ago • 8 comments

Is there any plan to migrate to the new stable version of Electron?

BrowserWindow.getDevToolsExtensions and BrowserWindow.addDevToolsExtension are deprecated and will be removed.

sirtimid avatar May 19 '20 09:05 sirtimid

I already opened a pull request to fix this (#131)

ghost avatar May 24 '20 21:05 ghost

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.

DmitryMK avatar Jun 03 '20 06:06 DmitryMK

I'm using the vue devtools in my electron 9 project and they are working fine. In development I use 'browserWindow.loadUrl("file://...")`

ghost avatar Jun 03 '20 06:06 ghost

I can confirm that redux dev tools do NOT work in Electron 9.0.4 but do work in 8.3.1

proto6 avatar Jun 17 '20 06:06 proto6

react dev tools is not working either

khanh-bes avatar Jul 01 '20 06:07 khanh-bes

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

tom-james-watson avatar Jul 15 '20 09:07 tom-james-watson

still not working on Electron 9.1.0 - I opened Electron ticket here

petef19 avatar Jul 19 '20 01:07 petef19

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 } }

Keimeno avatar Nov 17 '21 09:11 Keimeno