diff --git a/src/content/notificationBar.js b/src/content/notificationBar.js index d07b286b..30704beb 100644 --- a/src/content/notificationBar.js +++ b/src/content/notificationBar.js @@ -19,7 +19,10 @@ chrome.storage.local.get('disableAddLoginNotification', function (obj) { if (!obj || !obj.disableAddLoginNotification) { - collectIfNeeded(); + if (collectIfNeededTimeout) { + clearTimeout(collectIfNeededTimeout); + } + collectIfNeededTimeout = setTimeout(collectIfNeeded, 1000); } }); });