Split screen tab is not found #104
Labels
Bug
the issue is a code defect that should be fixed
Waiting for more info
more information is needed and the reporter was at-mentioned.
After creating a split screen tab, the new tab on the right does not appear in the all tabs query.
Sending a message from the split screen tab to the service worker, and looking at sender.tab will get information about the tab (Id, URL, etc) but that seems to be the only way that the service worker can know the tab exists.
Using
chrome.tabs.query({ }, function(tabs){
for(i = 0; i < tabs.length; i++){
console.log(tabs[i].id);
console.log(tabs[i].url);
}
Will not get the ID or URL of the split screen tab on the right
Is there any way that a service worker can correctly find the split screen tab, without waiting for a message from the content script?
The extension that we work on requires that we know the list of all currently opened tabs in the service worker
The text was updated successfully, but these errors were encountered: