For moderators: this is a 1st stackoverflow result in google for this topic thats why it needs an update.

Answer after a lot of research:

I've been long trying to finally fix this issue. The solution works for vite bundler in versions 2.9.5 through 5.2.11 (the last one i tested) with Manifest V3 Google Chrome (v125 2024).

Complete code: https://github.com/Toumash/crxjs-vite-plugin-react-devtools (feel free to clone)

Use import 'react-devtools'; in your content_script entry and use devtools as a standalone app - as you pointed out the react devtools chrome extension cannot communicate with other extension (the one you're developing)

Improvements:

  1. To not bundle this package into production extension build use a conditionally imported file. I've added the following into my package.json
{
...
 "imports": {
    "#env-import/*.ts": {
      "development": "./src/*.dev.ts",
      "production": "./src/*.prod.ts"
    }
  }
...
}
  1. Add a file devtools.dev.ts containing only the import 'react-devtools';.
  2. Add a file devtools.prod.ts with nothing in it (empty file)
  3. In your content_scripts/index.ts add import '#env-import/devtools.ts'; to conditionally import the devtools script
  4. Install react-devtools standalone package npm i -D react-devtools
  5. Add react-devtools to the npm scripts section "react-devtools": "react-devtools",
  6. Now you can finally just run your extension and npm run react-devtools and it works

Original (mine) answer on Github

Answer from Toumash on Stack Overflow
🌐
Chrome Web Store
chromewebstore.google.com › detail › react-developer-tools › fmkadmapgofadopljbjfkapdkoienihi
React Developer Tools - Chrome Web Store
React Developer Tools is a Chrome DevTools extension for the open-source React JavaScript library. It allows you to inspect the React component hierarchies in the Chrome Developer Tools.
🌐
React
react.dev › learn › react-developer-tools
React Developer Tools – React
The easiest way to debug websites built with React is to install the React Developer Tools browser extension.
Discussions

How to add react-devtools for chrome extension development?
I am inserting a react component ... dev tools working. After reading online it seems like this could be caused by: React devtools injects a script and it doesn't have the required permissions ... Checking that the REACT_DEVTOOLS_GLOBAL_HOOK is present on the window object, Its present on the window when targeted through the browser but not when i try to grab it from within my extension... More on stackoverflow.com
🌐 stackoverflow.com
React Developer Tools not appearing in Chrome
They've been really finicky for me lately too. I'd recommend trying to restart the browser. Also, closing the chrome dev tools and reopening it usually helps the react extension show up finally for me. More on reddit.com
🌐 r/reactjs
9
4
November 4, 2023
What happened to the Google Chrome React developer ...
🌐 r/reactjs
Is React Developer Tools extension worth it on chrome?
I can't imagine deving without it More on reddit.com
🌐 r/reactjs
7
1
January 28, 2021
🌐
Medium
medium.com › @pkellner › using-the-react-debugger-extension-7ea0bcbf2b50
Using the React Developer Extension | by Peter Kellner | Medium
June 3, 2020 - The Facebook React team builds and supports a browser-based extension for Chrome and Firefox that gives us developers a clear view into what’s happening in our running browser based React apps. ... Why do we need a clear view? It’s because the browser does not know anything about our React code. Same with its standard debugging tools.
Top answer
1 of 2
1

For moderators: this is a 1st stackoverflow result in google for this topic thats why it needs an update.

Answer after a lot of research:

I've been long trying to finally fix this issue. The solution works for vite bundler in versions 2.9.5 through 5.2.11 (the last one i tested) with Manifest V3 Google Chrome (v125 2024).

Complete code: https://github.com/Toumash/crxjs-vite-plugin-react-devtools (feel free to clone)

Use import 'react-devtools'; in your content_script entry and use devtools as a standalone app - as you pointed out the react devtools chrome extension cannot communicate with other extension (the one you're developing)

Improvements:

  1. To not bundle this package into production extension build use a conditionally imported file. I've added the following into my package.json
{
...
 "imports": {
    "#env-import/*.ts": {
      "development": "./src/*.dev.ts",
      "production": "./src/*.prod.ts"
    }
  }
...
}
  1. Add a file devtools.dev.ts containing only the import 'react-devtools';.
  2. Add a file devtools.prod.ts with nothing in it (empty file)
  3. In your content_scripts/index.ts add import '#env-import/devtools.ts'; to conditionally import the devtools script
  4. Install react-devtools standalone package npm i -D react-devtools
  5. Add react-devtools to the npm scripts section "react-devtools": "react-devtools",
  6. Now you can finally just run your extension and npm run react-devtools and it works

Original (mine) answer on Github

2 of 2
-1

In manifest v3 it's afaik not possible to use a remote script (even though the docs suggest otherwise).

What you can do instead is include the script from the standalone devtools in your extension files.

So instead of including: <script src="http://localhost:8097"></script> as the docs describe, open that url in your browser, save the JS as file in your chrome extension folder, then include that file. For example <script src="/react-devtools.js"></script>.

Once you have done that the devtools will show in the standalone app.

🌐
npm
npmjs.com › package › react-devtools
react-devtools - npm
Go to chrome://extensions. If you see "service worker (inactive)" in the React Developer Tools extension, try disabling and re-enabling the extension. This will restart the service worker.
      » npm install react-devtools
    
Published   Oct 20, 2025
Version   7.0.1
🌐
Codecademy
codecademy.com › article › react-devtools-tutorial
How to Use React Developer Tools (With Example) | Codecademy
React DevTools (also known as React Developer Tools) is a well-known browser extension that adds React-specific inspection capabilities to our standard browser DevTools. It allows developers to: ... This extension enhances our existing Chrome ...
🌐
GitHub
github.com › facebook › react-devtools
GitHub - facebook/react-devtools: An extension that allows inspection of React component hierarchy in the Chrome and Firefox Developer Tools. · GitHub
An extension that allows inspection of React component hierarchy in the Chrome and Firefox Developer Tools. - facebook/react-devtools
Starred by 11K users
Forked by 1.8K users
Find elsewhere
🌐
Reddit
reddit.com › r/reactjs › react developer tools not appearing in chrome
r/reactjs on Reddit: React Developer Tools not appearing in Chrome
November 4, 2023 -

For some reason I cannot find the developer tools in Chrome. Why could that be?

I posted my question in StackOverflow, but I hope I could find here a solution faster:
https://stackoverflow.com/questions/77421852/react-developer-tools-wont-appear-in-chrome

I uploaded pictures in that link, in case you want to see it directly.

Please help!

🌐
GeeksforGeeks
geeksforgeeks.org › reactjs › what-is-react-developer-tool
React Developer Tools - GeeksforGeeks
August 19, 2025 - React Developer Tools (React DevTools) is a browser extension for Chrome and Firefox that helps developers inspect, debug and analyze React applications.
🌐
React
legacy.reactjs.org › blog › 2014 › 01 › 02 › react-chrome-developer-tools.html
React Chrome Developer Tools – React Blog
January 2, 2014 - With the new year, we thought you’d enjoy some new tools for debugging React code. Today we’re releasing the React Developer Tools, an extension to the Chrome Developer Tools.
🌐
DebugBear
debugbear.com › blog › react-devtools
Getting Started with React DevTools in Chrome | DebugBear
December 1, 2025 - The React Developer Tools browser extension for Chrome contains a powerful suite of debugging tools for React apps.
🌐
freeCodeCamp
freecodecamp.org › news › how-to-use-react-devtools
How to Use React Developer Tools – Explained With Examples
May 6, 2024 - Installing the React developer ... it. If you use Chrome, visit the Chrome Webstore and search for "React", then select "React Developer Tools" and click the "Add to Chrome" button to install it....
🌐
Softonic
react-developer-tools.en.softonic.com › home › web browsers › browsers › google chrome › react developer tools
React Developer Tools for Google Chrome - Extension Download
October 25, 2025 - React Developer Tools for Chrome, free and safe download. React Developer Tools latest version: React Developer Tools - New Tab Extension For Chrome.
Rating: 8.8/10 ​ - ​ 1 votes
🌐
Reddit
reddit.com › r/reactjs › react devtools for debugging chrome extension?
r/reactjs on Reddit: React Devtools for debugging Chrome extension?
October 15, 2025 - I am trying to check if components are rendering normally and saw react devtools is not available in extension environment due to strict isolation where extension cannot access other extension space. I also tried installing react-devtools npm package and injecting script in my file where I render html (basically root.render()) but that doesn't work either. Apparently its cuz of manifest v3 rules or something. Can anyone guide me how to use react-devtools for debugging chrome extension?
🌐
Zipy
zipy.ai › blog › react-devtool-extension
How to use React Developer Tools extensions
December 6, 2024 - The versatility of React Developer Tools extends to its compatibility with all major browsers, including Google Chrome, Microsoft Edge, Mozilla Firefox, and Safari. This flexibility ensures that you can use this essential tool on your preferred browser without any hassle. React Developer Tools is not just a handy extension—it's a powerhouse that transforms the React development experience.
🌐
SourceBae
sourcebae.com › home › how to install react developer tools in chrome?
How to Install React Developer Tools in Chrome? - SourceBae
August 21, 2025 - React Developer Tools is a powerful browser extension that enhances the debugging and development of React applications. By allowing developers to inspect and manipulate the component hierarchy, state, and props, React Developer Tools provides ...
🌐
React Native
reactnative.dev › docs › react-native-devtools
React Native DevTools · React Native
February 20, 2026 - If you want to inspect React Native’s underlying platform layers (for example, while developing a Native Module), please use the debugging tools available in Android Studio and Xcode (see Debugging Native Code). ... React Native DevTools supports ...
🌐
Electron
electronjs.org › devtools extension
DevTools Extension | Electron
on Windows it is %LOCALAPPDATA%\Google\Chrome\User Data\Default\Extensions; ... Pass the location of the extension to the ses.loadExtension API. For React Developer Tools v4.9.0, it looks something like:
🌐
React
legacy.reactjs.org › blog › 2019 › 08 › 15 › new-react-devtools.html
Introducing the New React DevTools – React Blog
Visit the interactive tutorial to try out the new version or see the changelog for demo videos and more details. ... React DevTools is available as an extension for Chrome and Firefox.