Is there any possibility to read local variable from javascript in c# WebBrowser component? In standard web browser like Chrome I have access to local variables by debugger (Google Developer Tools) and then I can bring variable to global scope like this:
window.myGlovalVar = myLocalVar;
What possibilities I have in my case?