From 8c567a29bbfa019950e5b3627e6b6a5f757772e7 Mon Sep 17 00:00:00 2001 From: TheJYU Date: Wed, 19 Nov 2025 14:23:41 +0800 Subject: [PATCH] fix(background): ignore moz-extension:// links Adds `moz-extension://` to the `ignoreProtocols` list. --- background.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/background.js b/background.js index 8cea2f6..58cf796 100644 --- a/background.js +++ b/background.js @@ -12,7 +12,8 @@ const ignoreProtocols = [ "wss://", "about:", "view-source:", - "chrome:" + "chrome:", + "moz-extension://" ]; class AppLink {