How to pin Redux Dev Tools Extension window to the Chrome browser

Viewed 3125

How to pin Redux Dev Tools Extension window to the bottom of the browser? If I click on the icon, it doesn't anchor to the bottom, it just floats.

I just figured out the answer, and I am posting as a q&a if anyone is having the same problem.

enter image description here

2 Answers

Hit Ctrl+Shift+I, or F12.

You will then open up the Developer Tools.

You will see a Redux tab at the end of Developer Tools.

enter image description here

Then select the bottom option to pin to the bottom:

enter image description here

I faced similar issue. I didn't have Redux tab in Chrome Dev Tools Panel after installing Redux DevTools. Everything worked once I quitted the browser and reloaded it.

Related