You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ If you do not know what [Redux DevTools](https://github.com/gaearon/redux-devtoo
56
56
return store;
57
57
}
58
58
```
59
-
or if you don't have other store enhancers and middlewares:
59
+
or [if you don't have other store enhancers and middlewares](https://github.com/zalmoxisus/redux-devtools-extension/commit/f26975cccff37f477001158019be7c9c9cb721b1):
60
60
```javascript
61
61
export default function configureStore(initialState) {
62
62
const store = createStore(reducer, initialState,
@@ -111,14 +111,14 @@ To include it in a chrome extension's content script follow [the example](https:
111
111
```js
112
112
window.devToolsExtension.open();
113
113
```
114
-
#### How to keep DevTools window focused all the time in a chrome panel
115
-
To enable chrome panels feature in Chrome, type in`chrome://flags/#enable-panels`in the url bar and click on "enable" under "enable panels". Make sure to click on "relaunch now " at the bottom of the page, to take effect.
116
114
#### How to include DevTools in the page
117
115
You may open DevTools in a newwindow (by opening context menu with right mouse click), from popup (clicking on the browser action button) or from Chrome dev panel. If you still, for some reason, want to include it directly in your page, load the following url in iframe:`chrome-extension://lmhkpmbekcpmknklioeibfkpmmfibljd/window.html`. You'd probably include it in a docker or in a resizeable component.
118
116
#### How to enable/disable errors notifying
119
117
Just find `Redux DevTools` on the extensions page (`chrome://extensions/`) and click the `Options` link to customize everything. The errors notifying is enabled by default, but it works only when the store enhancer is called (in order not to show notifications for any sites you visit). In case you want notifications for a non-redux app, init it explicitly by calling `window.devToolsExtension.notifyErrors()` (probably you'll check if`window.devToolsExtension` exists before calling it).
118
+
#### How to get it work with WebWorkers, React Native, hybrid, desktop and server side apps
119
+
Of course, it is not possible to inject extension's script there and to communicate directly. To solve this we use [Remote Redux DevTools](https://github.com/zalmoxisus/remote-redux-devtools). Just find `Remote` button or press `Alt`+`Shift`+`arrow up` for remote monitoring.
120
120
#### Keyboard shortcuts
121
-
Use `Cmd`+`Ctrl`+Arrows forOSX and `Alt`+`Shift`+Arrows for Windows, Linux and ChromeOS. Arrow down, left and right indicate the position of the DevTools window. Use`arrow up` to open DevTols in a [Chrome panel](https://github.com/zalmoxisus/redux-devtools-extension#how-to-keep-devtools-window-focused-all-the-time-in-a-chrome-panel). To change the shortcuts, click "Keyboard shortcuts" button on the bottom of the extensions page (`chrome://extensions/`).
121
+
Use `Cmd`+`Ctrl`+Arrows for OSX and `Alt`+`Shift`+Arrows for Windows, Linux and ChromeOS. Arrow down, left and right indicate the position of the DevTools window. Use `arrow up` to open Remote monitoring to communicate with [Remote Redux DevTools](https://github.com/zalmoxisus/remote-redux-devtools). To change the shortcuts, click "Keyboard shortcuts" button on the bottom of the extensions page (`chrome://extensions/`).
0 commit comments