Home | History | Annotate | Download | only in show_tabs

Lines Matching refs:tabs

5 // Show a list of all tabs in the same process as this one.
8 chrome.tabs.query({currentWindow: true, active: true}, function(tabs) {
9 var current = currentWindow.tabs.filter(function(tab) {
16 titleDiv.innerHTML = "<b>Tabs in Process " + pid + ":</b>";
27 // Loop over all windows and their tabs
28 var tabs = [];
31 for (var j = 0; j < windowList[i].tabs.length; j++) {
32 var tab = windowList[i].tabs[j];
34 tabs.push(tab);
40 tabs.forEach(function(tab) {
67 chrome.tabs.update(tabId, { selected: true });