2015-08-31 19:17:41 -07:00
|
|
|
# DevTools Extension
|
2014-08-28 16:33:27 +08:00
|
|
|
|
2016-05-29 15:19:41 +09:00
|
|
|
Electron supports the [Chrome DevTools Extension][devtools-extension], which can
|
|
|
|
be used to extend the ability of devtools for debugging popular web frameworks.
|
2014-08-28 16:33:27 +08:00
|
|
|
|
2016-05-29 15:19:41 +09:00
|
|
|
## How to load a DevTools Extension
|
2014-08-28 16:33:27 +08:00
|
|
|
|
2016-07-14 14:12:06 -07:00
|
|
|
This document outlines the process for manually loading an extension.
|
|
|
|
You may also try
|
|
|
|
[electron-devtools-installer](https://github.com/GPMDP/electron-devtools-installer),
|
2016-07-14 14:16:02 -07:00
|
|
|
a third-party tool that downloads extensions directly from the Chrome WebStore.
|
2016-07-14 14:12:06 -07:00
|
|
|
|
2016-05-29 15:19:41 +09:00
|
|
|
To load an extension in Electron, you need to download it in Chrome browser,
|
|
|
|
locate its filesystem path, and then load it by calling the
|
|
|
|
`BrowserWindow.addDevToolsExtension(extension)` API.
|
2015-11-03 16:11:29 +01:00
|
|
|
|
2016-05-29 15:19:41 +09:00
|
|
|
Using the [React Developer Tools][react-devtools] as example:
|
2014-08-28 16:33:27 +08:00
|
|
|
|
2016-05-29 15:19:41 +09:00
|
|
|
1. Install it in Chrome browser.
|
|
|
|
1. Navigate to `chrome://extensions`, and find its extension ID, which is a hash
|
|
|
|
string like `fmkadmapgofadopljbjfkapdkoienihi`.
|
|
|
|
1. Find out filesystem location used by Chrome for storing extensions:
|
|
|
|
* on Windows it is `%LOCALAPPDATA%\Google\Chrome\User Data\Default\Extensions`;
|
2016-06-02 20:12:58 -05:00
|
|
|
* on Linux it could be:
|
|
|
|
* `~/.config/google-chrome/Default/Extensions/`
|
|
|
|
* `~/.config/google-chrome-beta/Default/Extensions/`
|
|
|
|
* `~/.config/google-chrome-canary/Default/Extensions/`
|
|
|
|
* `~/.config/chromium/Default/Extensions/`
|
2016-06-18 15:26:26 +02:00
|
|
|
* on macOS it is `~/Library/Application Support/Google/Chrome/Default/Extensions`.
|
2016-05-29 15:19:41 +09:00
|
|
|
1. Pass the location of the extension to `BrowserWindow.addDevToolsExtension`
|
|
|
|
API, for the React Developer Tools, it is something like:
|
2016-07-27 22:01:01 +02:00
|
|
|
`~/Library/Application Support/Google/Chrome/Default/Extensions/fmkadmapgofadopljbjfkapdkoienihi/0.15.0_0`
|
|
|
|
|
|
|
|
**Note:** The `BrowserWindow.addDevToolsExtension` API cannot be called before the
|
|
|
|
ready event of the app module is emitted.
|
2014-08-28 16:33:27 +08:00
|
|
|
|
2016-05-29 15:19:41 +09:00
|
|
|
The name of the extension is returned by `BrowserWindow.addDevToolsExtension`,
|
|
|
|
and you can pass the name of the extension to the `BrowserWindow.removeDevToolsExtension`
|
|
|
|
API to unload it.
|
2015-10-11 15:18:27 +02:00
|
|
|
|
2016-05-29 15:19:41 +09:00
|
|
|
## Supported DevTools Extensions
|
2014-08-28 16:33:27 +08:00
|
|
|
|
2016-05-29 15:19:41 +09:00
|
|
|
Electron only supports a limited set of `chrome.*` APIs, so some extensions
|
|
|
|
using unsupported `chrome.*` APIs for chrome extension features may not work.
|
|
|
|
Following Devtools Extensions are tested and guaranteed to work in Electron:
|
2014-08-28 16:33:27 +08:00
|
|
|
|
2016-05-29 15:19:41 +09:00
|
|
|
* [Ember Inspector](https://chrome.google.com/webstore/detail/ember-inspector/bmdblncegkenkacieihfhpjfppoconhi)
|
|
|
|
* [React Developer Tools](https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi)
|
|
|
|
* [Backbone Debugger](https://chrome.google.com/webstore/detail/backbone-debugger/bhljhndlimiafopmmhjlgfpnnchjjbhd)
|
|
|
|
* [jQuery Debugger](https://chrome.google.com/webstore/detail/jquery-debugger/dbhhnnnpaeobfddmlalhnehgclcmjimi)
|
|
|
|
* [AngularJS Batarang](https://chrome.google.com/webstore/detail/angularjs-batarang/ighdmehidhipcmcojjgiloacoafjmpfk)
|
|
|
|
* [Vue.js devtools](https://chrome.google.com/webstore/detail/vuejs-devtools/nhdogjmejiglipccpnnnanhbledajbpd)
|
2016-08-21 17:36:26 -04:00
|
|
|
* [Cerebral Debugger](http://www.cerebraljs.com/documentation/the_debugger)
|
2016-11-14 00:32:31 +08:00
|
|
|
* [Redux DevTools Extension](https://chrome.google.com/webstore/detail/redux-devtools/lmhkpmbekcpmknklioeibfkpmmfibljd)
|
2014-08-28 16:33:27 +08:00
|
|
|
|
2016-05-29 15:19:41 +09:00
|
|
|
### What should I do if a DevTools Extension is not working?
|
2014-08-28 16:33:27 +08:00
|
|
|
|
2016-06-20 02:24:00 +10:00
|
|
|
First please make sure the extension is still being maintained, some extensions
|
2016-05-29 15:19:41 +09:00
|
|
|
can not even work for recent versions of Chrome browser, and we are not able to
|
|
|
|
do anything for them.
|
2014-08-28 16:33:27 +08:00
|
|
|
|
2016-05-29 15:19:41 +09:00
|
|
|
Then file a bug at Electron's issues list, and describe which part of the
|
|
|
|
extension is not working as expected.
|
2014-08-28 16:33:27 +08:00
|
|
|
|
|
|
|
[devtools-extension]: https://developer.chrome.com/extensions/devtools
|
2016-05-29 15:19:41 +09:00
|
|
|
[react-devtools]: https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi
|