# Tab Loader Tracker

> This extension detects tabs that are not loading or have server errors, displays them in the toolbar and refreshes them in groups of 30.

Canonical page: [https://chrome-stats.com/d/tab-loader-tracker](https://chrome-stats.com/d/tab-loader-tracker)

## Overview

- **ID:** `tab-loader-tracker`
- **Platform:** Firefox
- **Type:** Firefox add-on
- **Status:** Removed
- **Publisher:** Hasan Tahsin
- **Version:** 1.0
- **Last updated:** 2024-12-11
- **First published:** 2024-12-11
- **Size:** 262 KB
- **Data as of:** 2024-12-11
- **Store listing:** [Firefox Add-ons Store](https://addons.mozilla.org/firefox/addon/tab-loader-tracker/)

## Description

* Tracks the tabs that are open every second. 
If you want to change this time, change the place "1000" in 
the following line of code in the background.js file. It is in ms.

function startCheckingTabs() {
  intervalId = setInterval(() =&gt; {
    checkTabsForErrors();
  }, 1000);
}

* Starts to refresh unloaded tabs in groups of 30. 
If you want to change the number of groups, change the 
places "30" in the following line of code in the background.js file.

    let errorGroup = errorTabs.slice(currentIndex, currentIndex + 30); // This part
    errorGroup.forEach(tab =&gt; {
      if (tab.status === 'loading' || tab.status === 'complete') {
        chrome.tabs.reload(<a href="https://prod.outgoing.prod.webservices.mozgcp.net/v1/a6eb5d8f0be5ca020d1f7824c0fe6f331d8ae907c39739b4926d3ff8fcad7189/http%3A//tab.id" rel="nofollow">tab.id</a>); // Yenileme işlemi
      }
    });

    // Sonraki 30'lu grup için indeks güncelle
    currentIndex += 30; // This part
    if (currentIndex &gt;= errorTabs.length) {
      currentIndex = 0; // Hata veren sekmelerin tamamı kontrol edildiyse başa dön
    }
  });

## Permissions and access

### Permissions

- `tabs`
- `activeTab`

## Safety

- **Risk impact:** Moderate risk impact
- **Risk likelihood:** High risk likelihood

### Analysis details

- Grants access to browser tabs, which can be used to track user browsing habits and history, presenting a privacy concern.
- This extension is not longer available in the store

## Similar extensions and apps

- [Tab Load Monitor](https://chrome-stats.com/d/tab-load-monitor) — 1 users
- [Tab Loading Checker](https://chrome-stats.com/d/tab-loading-checker) — 12 users, 5.00 / 5
- [Sequential Tab Refresher](https://chrome-stats.com/d/sequential-tab-refresher)
- [Tab Reload Optimizer](https://chrome-stats.com/d/tab-reload-optimizer)
- [Tab Reloder](https://chrome-stats.com/d/tab-reloder) — 10 users
- [Auto Refresh Tab Lite](https://chrome-stats.com/d/auto-refresh-tab-lite) — 1 users
- [Tabs Unloader](https://chrome-stats.com/d/tabs-unloader) — 38 users, 5.00 / 5
- [Interval Tab Reloader](https://chrome-stats.com/d/interval-tab-reloader)
- [Tab Time Tracker v2](https://chrome-stats.com/d/tab-time-tracker-v2) — 1 users
- [reload-the-tab-when-error](https://chrome-stats.com/d/reload-the-tab-when-error) — 2 users, 5.00 / 5
- [Tab Reloader (page auto refresh)](https://chrome-stats.com/d/tab-reloader) — 78,681 users, 4.07 / 5
- [AutoTabRefresh](https://chrome-stats.com/d/autotabrefresh) — 423 users, 3.90 / 5

---

Source: [Chrome-Stats](https://chrome-stats.com/d/tab-loader-tracker)
