Skip to content

Commit

Permalink
Fix #1203
Browse files Browse the repository at this point in the history
  • Loading branch information
mymindstorm committed Jun 26, 2024
1 parent 5e8df8e commit 8d9be09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Popup/EntryComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand Down

0 comments on commit 8d9be09

Please sign in to comment.