Skip to content

Releases: zalmoxisus/redux-devtools-extension

v0.4.3

24 Nov 11:49
Compare
Choose a tag to compare
  • Fixed persistState session id [#18]
  • Increased popup (action page) width [#17]
  • Removed redux-devtools-dock-monitor.

v0.4.2

19 Nov 15:17
Compare
Choose a tag to compare
  • DevTools' window now can be opened programmatically with window.devToolsExtension.open().
  • Fixed issue with loosing context menu.

v0.4.1

19 Nov 11:00
Compare
Choose a tag to compare

v0.4.0

19 Nov 08:30
Compare
Choose a tag to compare

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

16 Nov 10:23
Compare
Choose a tag to compare
  • Do not parse messages from other scripts.
  • Fix devtools source for the extensions background page.
  • Simplify messaging with crossmessaging.

v0.3.0

09 Nov 10:07
Compare
Choose a tag to compare

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

04 Nov 16:30
Compare
Choose a tag to compare

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

03 Nov 19:26
Compare
Choose a tag to compare
  • 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.

Demo

v0.1.0

29 Oct 09:00
Compare
Choose a tag to compare
  • Use pageAction instead of browserAction.
  • 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.

Demo

v0.0.1

27 Oct 17:45
Compare
Choose a tag to compare

Initial public release.
Demo