Ahmad Kholid 3 years ago
parent
commit
5d5d714729
1 changed files with 4 additions and 1 deletions
  1. 4 1
      src/popup/pages/Home.vue

+ 4 - 1
src/popup/pages/Home.vue

@@ -257,7 +257,10 @@ async function recordWorkflow(options = {}) {
 
     const tabs = await browser.tabs.query({});
     for (const tab of tabs) {
-      if (tab.url.startsWith('http')) {
+      if (
+        tab.url.startsWith('http') &&
+        !tab.url.includes('chrome.google.com')
+      ) {
         await browser.tabs.executeScript(tab.id, {
           allFrames: true,
           file: 'recordWorkflow.bundle.js',