Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

redux-devtools-extension not working in chrome devtools

I'm using redux-devtools-extension to develop a React Native app:

In the React Native debugger it works and you can see window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ and window.__REDUX_DEVTOOLS_EXTENSION__ are defined correctly.

enter image description here

In the chrome devtools not so.

enter image description here enter image description here

Does anyone know how I can get these to be defined in chrome devtools? I have the redux extension installed in chrome and have tried reinstalling it.

like image 413
Grub Avatar asked Jun 04 '26 19:06

Grub


2 Answers

I faced a similar problem, the following worked for me.

Goto extensions settings for redux Devtools in chrome extensions and check Allow Access to file URLs settings.

Extensions > Redux Devtools > Allow Access to file URLs

like image 188
Prajwal Singh Avatar answered Jun 07 '26 22:06

Prajwal Singh


I had the same issue where the option REDUX did not appear in the top menu Chrome browser.

  1. In "Manage Extensions", I made sure Redux DevTools was active and updated.
  2. I reloaded the page.
  3. Right click >> Redux DevTools >> Open in a panel(enable in browser settings)
  4. Right click >> Inspect

Now, verify "Redux" appears in the top menu next to Elements, Console, ... , Lighthouse, etc.

Redux DevTools extension should be working in chrome-devtools.

like image 44
Domiserver Avatar answered Jun 07 '26 23:06

Domiserver