I'm trying to build an autofill extension but I don't know ho to use user input in my js fie. I tried with:
localStorage.setItem("full_name_E", full_name_E);
this is in the html script (popup for etension). And in the autofill js file I wrote:
localStorage.getItem('full_name_E');
but if I type the first command in the chrome console and refresh the page, full_name_E value appear in the box. I tried with import/export but it doesn't work. Any help?