I'm using following code to retrieve all localstorage keys:
var myKeys=Object.keys(localStorage);
But this gives me only localstorage of main frame. How to get localstorage keys of frames? I'm using this code in popup.html in Chrome Extension.
I'm using following code to retrieve all localstorage keys:
var myKeys=Object.keys(localStorage);
But this gives me only localstorage of main frame. How to get localstorage keys of frames? I'm using this code in popup.html in Chrome Extension.