electron-devtools-installer
electron-devtools-installer copied to clipboard
An easy way to ensure Chrome DevTools extensions into Electron

Many of the extensions seem to work with Electron 9 and 10, but the React Developer Tools simply do not start up on those versions. I had to downgrade to...
code (from electron-react-boilerplate): ```typescript const installer = require('electron-devtools-installer'); const extensions = ['REACT_DEVELOPER_TOOLS', 'REDUX_DEVTOOLS']; // ... (some promise/catch/await magic) ... extensions.map((name) => installer.default(installer[name], forceDownload)) ``` output: ``` Error: Exited with code...
In my electron app I create 2 BrowserWindows. I call installExtension after creating the BrowserWindows, but my main window only loads the devtools occasionally. ``` app.whenReady() .then(createWindows) .then(() => {...
Hopefully this can be supported as well, currently using electron 8 https://github.com/bfanger/pixi-inspector
I have a use case where I have to install extensions for a session other than the default session in Electron. It would we great if the API took a...
In the docs the value passed back by installExtension is a JS Object not a name as implied by the parameter name and the console.log can we get the docs...
This is officially recommended (https://blog.meteor.com/announcing-meteor-1-10-c2419914b527) extension for work with meteor. We use it together with https://github.com/wojtkowiak/meteor-desktop
Related to #28. This was start work by [SimulatedGREG's repo](https://github.com/SimulatedGREG/electron-devtools-installer/commits/master) but [no longer response](https://github.com/SimulatedGREG/electron-devtools-installer/commit/71dad0337097c5ca017cd5b31c75fc7adcf49dc6#commitcomment-20525891). :\
I would love to be able to install devtools from a CLI command, instead of by adding this temporary code to my Electron app. This could be done as an...