From db0f1df7903d2454b5bd435d21de1d452bbb11ab Mon Sep 17 00:00:00 2001 From: Wirlaburla Date: Fri, 11 Oct 2024 14:23:36 -0500 Subject: [PATCH] add chrome url to exceptions --- click.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/click.js b/click.js index 1c792ba..9c1f14a 100644 --- a/click.js +++ b/click.js @@ -1,7 +1,7 @@ var sndsrc; var click = new Audio(); chrome.webNavigation.onBeforeNavigate.addListener((details)=>{ - if (!details.url.startsWith("moz-extension://") && !details.url.startsWith("about:")) { + if (!details.url.startsWith("moz-extension://") && !details.url.startsWith("about:") && !details.url.startsWith("chrome://")) { if (click.src) click.play(); } });