From 23d2efab8c2129c20bbd3e16bd83bc3489f9bacb Mon Sep 17 00:00:00 2001 From: GrzegorzZajac000 Date: Sat, 2 Mar 2024 14:49:00 +0100 Subject: [PATCH] #1513 Indodax FIX --- src/content/functions/inputToken.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/functions/inputToken.js b/src/content/functions/inputToken.js index 8373e05..0efc846 100644 --- a/src/content/functions/inputToken.js +++ b/src/content/functions/inputToken.js @@ -62,7 +62,7 @@ const inputToken = (request, inputElement, siteURL) => { document.activeElement.dispatchEvent(inputEvent); // NORTON FIX - if (siteURL.includes('login.norton')) { + if (siteURL.includes('login.norton') || siteURL.includes('indodax.com')) { document.activeElement.dispatchEvent(new KeyboardEvent('keyup', { key: request.token[i] })); } // END NORTON FIX