diff --git a/content_script.js b/content_script.js index 502af2d..0741b3c 100644 --- a/content_script.js +++ b/content_script.js @@ -1,8 +1,6 @@ "use strict"; // Put all the javascript code here, that you want to execute after page load. -let bcFilled = false; -let bdayFilled = false; let currentStage; function executeStage(node) { @@ -77,7 +75,6 @@ function fillBday(birthdayInput) { if (bDay !== null && bDay !== "") { birthdayInput.value = bDay; birthdayInput.dispatchEvent(new Event('input', { bubbles: true })); - bdayFilled = true; return true; } })