I'm looking to make a chrome extension that would be able to access the redux store of an existing webpage. The Redux-Dev Tools extension can read the state from websites, but not in a way that would be accessible for my own chrome extension.
For example, let's say facebook.com stores the username in a Redux store. I'd like the chrome extension that I write to be able to access the username in the Facebook.com redux store. Is this possible in any way?
Thank you!