From 8d9be09baebb9ebf2405eef8bba763d1d4d08bec Mon Sep 17 00:00:00 2001 From: Brendan Early Date: Tue, 25 Jun 2024 19:41:53 -0500 Subject: [PATCH] Fix #1203 --- src/components/Popup/EntryComponent.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Popup/EntryComponent.vue b/src/components/Popup/EntryComponent.vue index e1cfd8fb1..4a6f51cc2 100644 --- a/src/components/Popup/EntryComponent.vue +++ b/src/components/Popup/EntryComponent.vue @@ -297,7 +297,7 @@ function getQrUrl(entry: OTPEntry) { async function insertContentScript() { const tab = await getCurrentTab(); - if (tab.id) { + if (tab.id && !tab.url?.startsWith("chrome:")) { await chrome.scripting.executeScript({ target: { tabId: tab.id }, files: ["/dist/content.js"],