N
N
Nadim Zakirov2020-05-21 11:52:42
JavaScript
Nadim Zakirov, 2020-05-21 11:52:42

How to prevent Chrome from freezing background tabs?

Is it possible using the Chrome API to prevent freezing of the background tabs in which my extension is running? If yes, then please tell me how to implement it? The tabs on which I maintain authorization constantly go into freezing. I say in advance that I can’t log in directly with POST, since EDS is used for authorization.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
N
Nadim Zakirov, 2020-05-21
@zkrvndm

Hurrah!) I found a solution to my problem. You just need to place handlers in the background.js of your extension:

chrome.tabs.onCreated.addListener(function(tab) {
    chrome.tabs.update(tab.id, {
        autoDiscardable: false
    });
});

chrome.tabs.onReplaced.addListener(function(tabId) {
    chrome.tabs.update(tabId, {
        autoDiscardable: false
    });
});

chrome.runtime.onInstalled.addListener(function(details) {
    chrome.tabs.query({}, function(tabs) {
        tabs.forEach(function(tab) {
            chrome.tabs.update(tab.id, {
                autoDiscardable: false
            });
        });
    });
});

N
Noir, 2020-05-21
@PolarBearGG

add tab auto-refresh to your plugin or action in the magnifying glass when active, the tab will not fall to sleep

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question