In my application state there are values set as initialState.
With the React Developer Tools it's very easy to directly modify some state value.
Is anything similar possible in Redux DevTools Extension, i.e. click and insert a new value for a specific property?
In this SO anwer it's stated that it's possible to "change whatever you want", but I cannot find how.
In the State -> Raw pane (see pic below) one can overwrite values but it doesn't seem to be applied.





One of the main principles of the Redux store is, that it can only be changed by reducer functions, whenever an action is dispatched.
Therefore I don't think, it is possible to change the store state in the Redux DevTools, but at least you can time travel or directly supress selected actions (which I often do to simulate, that an AJAX request is still pending).
If you really want to change the state of your store, you could assign the store (when it is created via
createStore) towindow._storeand then callwindow._store.dispatch({type: "...", ...});directly from the Console.