Redux dev tools does not work in latest Electron

Author: vitonskyCreated Feb 11, 2026Updated Feb 11, 2026

Redux dev tools does not work on latest electron.

I've update an electron version from 25.9.8 to 38.4.0 in https://github.com/vitonsky/deepink/pull/138 and found the redux devtools does not work anymore.

Now 3 months later I update electron version to latest version (40.0.0) and problem with redux devtools is still here.

I install dev tools

const { installExtension, REDUX_DEVTOOLS } = await import('electron-devtools-installer');
await installExtension(REDUX_DEVTOOLS, { loadExtensionOptions: { allowFileAccess: true } });

And when i run the app and open dev tools, there are no redux devtools tab. I've tried to reload page it does not fix a problem.

I can see a redux devtools in contexts list Image

I can confirm the problem does not reproduce on Electron 25.9.8, but we cannot use this version anymore by security reasons.