From 6af70c07bcb16e3033e299d07da61e8a6afd7053 Mon Sep 17 00:00:00 2001 From: Maks Snegov Date: Sat, 27 Apr 2024 22:48:24 -0700 Subject: [PATCH] Reduce runner poll period to 0.5s --- scripts/content.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/content.js b/scripts/content.js index 0d61990..5e67275 100644 --- a/scripts/content.js +++ b/scripts/content.js @@ -730,4 +730,4 @@ async function runner() { isRunning = false; } -setInterval(runner, 1000); +setInterval(runner, 500);