Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ReactJS chrome extension installed but not showing up

Anyone know why the ReactJS Chrome browser extension isn't showing for mein dev tools? It's installed, at one point it was working.

I'm using chrome Version 39.0.2171.65 (64-bit) on Mac OS X v 10.7.5

I read the reviews on this extension, some people said need to expose React as a global. I'm using React NPM with: var React = require('react');

like image 708
Giant Elk Avatar asked Nov 20 '14 02:11

Giant Elk


People also ask

How do I see React tools in Chrome?

Open the console by either right-clicking and inspecting an element or by opening the toolbar by clicking View > Developer > JavaScript console. The Components tab will show the current React component tree, along with any props, state, or context.


1 Answers

In chrome://extensions/ select Allow access to file URLs for the React Developer Tools extension, using v0.13.1 of React. I didn't need to add anything to my source code.

like image 94
Giant Elk Avatar answered Sep 25 '22 14:09

Giant Elk