Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

118
Views
Stop chrome from reloading a tab in loop

I'm creating a Chrome extension and one of the actions is to reload the current tab after changing the URL. This is the code below:

submitChoices.addEventListener("click", async () => {
  let [tab] = await chrome.tabs.query({ active: true, currentWindow: true });
  let url = fieldChoices(tab); // This returns the new Url based on some choices
  chrome.tabs.query({ active: true, currentWindow: true }, function () {
    chrome.tabs.update(tab.id, { url });
    chrome.tabs.onUpdated.addListener(function () {
      chrome.tabs.reload(); // Issue seems to be here
    });
  });
});

The problem I'm having is that the chrome.tabs.reload(); seems to be stuck in a loop. The tab keeps on reloading and only stops after I change tabs or switch focus to another window/app. Any tips? Thank you!

about 4 years ago · Santiago Trujillo
1 answers
Answer question

0

Your code is a bit confusing, with many parts you don't need. It keeps reloading because the onUpdated listener starts again every time. But you don't need the listener at all, and you don't need the second tabs.query that you are not even using:

submitChoices.addEventListener("click", async () => {
    let [tab] = await chrome.tabs.query({ active: true, currentWindow: true });
    let url = fieldChoices(tab); // This returns the new Url based on some choices
    chrome.tabs.update(tab.id, { url });
});
about 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!