Home | History | Annotate | Download | only in inspector

Lines Matching refs:tabs

5 tabs = {};
27 tabs = {};
33 for (var j = 0; j < windowList[i].tabs.length; j++) {
34 tabIds[tabIds.length] = windowList[i].tabs[j].id;
35 tabs[windowList[i].tabs[j].id] = windowList[i].tabs[j];
56 chrome.tabs.update(id, updateTabData(id));
70 chrome.tabs.move(id, moveTabData(id));
95 chrome.tabs.create(args);
104 chrome.tabs.update(tabIds[i], updateTabData(tabIds[i]));
115 chrome.tabs.move(tabIds[i], moveTabData(tabIds[i]));
124 chrome.tabs.remove(tabId, function() {
158 chrome.tabs.onCreated.addListener(function(tab) {
160 'tabs.onCreated -- window: ' + tab.windowId + ' tab: ' + tab.id +
165 chrome.tabs.onAttached.addListener(function(tabId, props) {
167 'tabs.onAttached -- window: ' + props.newWindowId + ' tab: ' + tabId +
172 chrome.tabs.onMoved.addListener(function(tabId, props) {
174 'tabs.onMoved -- window: ' + props.windowId + ' tab: ' + tabId +
180 chrome.tabs.get(tabId, function(tab) {
188 chrome.tabs.onUpdated.addListener(function(tabId, props) {
190 'tabs.onUpdated -- tab: ' + tabId + ' status ' + props.status +
195 chrome.tabs.onDetached.addListener(function(tabId, props) {
197 'tabs.onDetached -- window: ' + props.oldWindowId + ' tab: ' + tabId +
202 chrome.tabs.onSelectionChanged.addListener(function(tabId, props) {
204 'tabs.onSelectionChanged -- window: ' + props.windowId + ' tab: ' +
209 chrome.tabs.onRemoved.addListener(function(tabId) {
210 appendToLog('tabs.onRemoved -- tab: ' + tabId);
243 chrome.tabs.getAllInWindow(window.id, function(tabList) {
244 window.tabs = tabList;
250 window.tabs.length);
293 chrome.tabs.query({active: true, currentWindow: true} function(tabs) {
294 var input = new JsExprContext(tabs[0]);
295 var output = document.getElementById('tab_' + tabs[0].id);
298 'selected tab refreshed -- tabId: ' + tabs[0].id +
299 ' url:' + tabs[0].url);