Releases: zalmoxisus/redux-devtools-extension
Releases · zalmoxisus/redux-devtools-extension
v0.4.3
v0.4.2
- DevTools' window now can be opened programmatically with
window.devToolsExtension.open()
. - Fixed issue with loosing context menu.
v0.4.1
- Fix serialization (the init action was dispatched before we get options).
- Implement options configuration for Chrome apps and extensions.
v0.4.0
The extension is now configurable:
- Maximum actions: limit the quantity of stored actions, autocommit when exceeds, 0 - no limit.
- Maximum delay: set maximum delay to 0 in order to have no delay or set to a higher value if your app generates a lot of actions.
- States serialization: disable serialization if your states are plain objects with no circular references.
- Inject in all pages: disable to allow only the urls bellow.
- Pages urls to inject DevTools in (regex from new line).
v0.3.1
- Do not parse messages from other scripts.
- Fix devtools source for the extensions background page.
- Simplify messaging with crossmessaging.
v0.3.0
Breaking changes
Use 'window.devToolsExtension()' instead of 'window.devToolsExtension' as store enhancer. The latter is deprecated, and will be removed in 0.4.
Support for chrome apps and extensions
Added support for external messaging, so it is possible to use devtools for any chrome-based application.
Unlike web apps, Chrome extension doesn't inject anything in other chrome extensions or in chrome apps, so you have to do it by yourself to allow debugging. Just add:
<script src="chrome-extension://lmhkpmbekcpmknklioeibfkpmmfibljd/js/inject.bundle.js"></script>
v0.2.1
Bug fixes release.
- Do not loose state linking when load another page in the same tab.
- Alert in devpanel when the store isn't find in the page.
- Show devtools for the current tab.
v0.2.0
- Added support for Redux DevTools' persist state. Just add
?debug_session=<session_name>
to the url. - Added support for Freezer. Just use supportChromeExtension from
freezer-redux-devtools/freezer-redux-middleware
. - Fixed bugs with messaging.
v0.1.0
- Use
pageAction
instead ofbrowserAction
. - Show popup icon and context menu only when there’s a redux script in the tab.
- Support the store with circular references.
- Now available in Chrome WebStore.