feat(1.89.19): google translate support

This commit is contained in:
Azgaar 2023-05-14 17:47:30 +04:00
parent c5a4014feb
commit 9bdf8629fb
3 changed files with 3 additions and 3 deletions

View file

@ -28,7 +28,7 @@ function createButton() {
button.innerHTML = "Install";
button.onclick = openDialog;
button.onmouseenter = () => tip("Install the Application");
document.querySelector("body").appendChild(button);
document.getElementById("optionsContainer").appendChild(button);
return button;
}