I have an extension for chrome, I want to change the form on a single site when I click on the button, the site is written on Vue, if it is stupid to change value vue it doesn’t change its property.
//Так не работает document.querySelector("#loginEmailInput").value = "test@test.ru"; Is it possible to somehow access the Vue property from the js extension file? 
In the manefest I have the following permissions
"permissions": [ "activeTab", "tabs", "<all_urls>" ],