diff --git a/core/js/get_focus_text.js b/core/js/get_focus_text.js index cc9dcaa..7e78197 100644 --- a/core/js/get_focus_text.js +++ b/core/js/get_focus_text.js @@ -11,6 +11,8 @@ } else { if (window.location.href.startsWith("https://web.telegram.org/") && activeElement.hasAttribute("placeholder")) { return activeElement.textContent; + } else if ((window.location.href.startsWith("https://console.cloud.google.com/") || window.location.href.startsWith("https://ssh.cloud.google.com/")) && activeElement.tagName.toLowerCase() == "iframe") { + return ""; } else { return undefined; }