Skip to content

Commit 83ba47a

Browse files
committed
Add instructions on how to enable/disable errors notifying
1 parent 3aa220f commit 83ba47a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,10 @@ window.devToolsExtension.open();
9191
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.
9292
#### How to include DevTools in the page
9393
You may open DevTools in a new window (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.
94+
#### How to enable/disable errors notifying
95+
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).
9496
#### Keyboard shortcuts
95-
Use `Cmd`+`Ctrl`+Arrows for OSX and `Alt`+`Shift`+Arrows for Windows, Linux and ChromeOS. Arrow up, 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/`).
97+
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 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/`).
9698

9799
## Credits
98100

0 commit comments

Comments
 (0)