AI 产品解读Chrome DevTools extension for debugging Redux application state changes in real-time
Developers using Redux (or similar state management libraries) need to inspect, trace, and debug state changes, action dispatches, and time-travel through application state - tasks that are difficult without dedicated tooling
1. Install extension. 2. Application integrates Redux DevTools via Redux store enhancer. 3. Open Chrome DevTools → Redux DevTools panel. 4. View dispatched actions, inspect state at each step, time-travel by clicking states, dispatch actions manually, import/export state for debugging.
Real-time state inspection and monitoringAction history with time-travel debugging (jump to any state)Action dispatching from the DevTools panelState import/export for debuggingAction filtering with allowlist/denylistSupport for Redux, and other state management architectures
- 目标用户
- Frontend developers using Redux / JavaScript developers using state management libraries / React developers debugging application state
- Bundled JavaScript is minified and very large (~1.6MB per bundle), making detailed code review of all features impractical, but core functionality is clear from manifest, background script, and store description
付费分析未识别到付费功能
This is an open-source project (MIT licensed, GitHub: reduxjs/redux-devtools). No payment, subscription, billing, or upgrade flows exist in the extension. All 'pro' keyword matches are false positives from font names ('Source Code Pro', 'Source Sans Pro') and minified variable names. The 'subscribe' match is Redux's built-in store.subscribe() method for state change listeners, not a subscription/payment feature. No Stripe, no pricing pages, no feature gating.
- 置信度
- 95
- 支付平台
- --
- 来源
- AI / 高
- 需要登录
- 否
- 登录理由
- No login or authentication is required. The extension works as a local developer tool that attaches to web pages using Redux/state management libraries. All keyword matches for 'account', 'token', 'auth', 'signin', 'session' are false positives from bundled third-party libraries (CodeMirror editor, JSON schema validators, React internals). The manifest shows no OAuth, no login URLs, no credential storage - only permissions for notifications, contextMenus, and storage (for user preferences).
I discovered this extension when I was looking into using Redux for my app state. Having a graph of my app's state - and the time travelling ability to replay state changes - absolutely shocked my team when I gave a demo.
Great extension. Very helpful for debugging!
its good and useful, thanks
2.16.1 doesn't work with ngrx 7.0.0-beta.0, previous one worked.
Not work. Bag in last version!!! "You may not call store.getState() while the reducer is executing."
Tool works fine, when store lightly loaded. (less then 20k - 40k code lines). If we load more, tool are break. Also 2.16.0 crashed our project, so I use 2.15.5. Sorry for my bad english.
Плагин хороший но вот версию 2.16.0, такое впечатление, что вылажили в прод без тестирования
The update of November 27, 2018 rendered my app useless. Had to disable.
Great extension, if you are using redux, you must use this
At first I wanted to give it 5 stars, it seemed to work great... until I tried to use it in a read-world big app. Mixed up action order, initial state not being initial, many times i get prompt that there is no store available and have to refresh my page 5-6 times to make it work. I had to write my own simple middleware that would log actions simply to the console. And this is my main suggestion - please focus more on making this tool reliable, not on fancy features and appearance