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? enter image description here

In the manefest I have the following permissions

  "permissions": [ "activeTab", "tabs", "<all_urls>" ], 
  • If the property has not been exported globally, access will fail. - Deliaz

0