This is the code example for a blog post called Communication for Custom Developer Tools that shares some notes learned during a recent hackathon. The idea is to create a custom browser extension that extends developer tools for easier, less intrusive debugging of a host application.
/application is the host application build with Create React App.
- Go to the
/applicationdirectory:cd application - Install the dependencies:
yarn(ornpm install) - Start the application:
yarn start(ornpm start)
/dev-tool is the browser extension.