| Index: chrome/common/extensions/docs/examples/api/windows/merge_windows/background.html
|
| ===================================================================
|
| --- chrome/common/extensions/docs/examples/api/windows/merge_windows/background.html (revision 0)
|
| +++ chrome/common/extensions/docs/examples/api/windows/merge_windows/background.html (revision 0)
|
| @@ -0,0 +1,49 @@
|
| +<html>
|
| + <head>
|
| + <script>
|
| + var targetWindow = null;
|
| + var tabCount = 0;
|
| +
|
| + function start(tab) {
|
| + chrome.windows.getCurrent(getWindows);
|
| + }
|
| +
|
| + function getWindows(win) {
|
| + targetWindow = win;
|
| + chrome.tabs.getAllInWindow(targetWindow.id, getTabs);
|
| + }
|
| +
|
| + function getTabs(tabs) {
|
| + tabCount = tabs.length;
|
| + // We require all the tab information to be populated.
|
| + chrome.windows.getAll({"populate" : true}, moveTabs);
|
| + }
|
| +
|
| + function moveTabs(windows) {
|
| + var numWindows = windows.length;
|
| + var tabPosition = tabCount;
|
| +
|
| + for (var i = 0; i < numWindows; i++) {
|
| + var win = windows[i];
|
| +
|
| + if (targetWindow.id != win.id) {
|
| + var numTabs = win.tabs.length;
|
| +
|
| + for (var j = 0; j < numTabs; j++) {
|
| + var tab = win.tabs[j];
|
| +
|
| + // Move the tab into the window that triggered the browser action.
|
| + chrome.tabs.move(tab.id,
|
| + {"windowId": targetWindow.id, "index": tabPosition});
|
| +
|
| + tabPosition++;
|
| + }
|
| + }
|
| + }
|
| + }
|
| +
|
| + // Set up a click handler so that we can merge all the windows.
|
| + chrome.browserAction.onClicked.addListener(start);
|
| + </script>
|
| + </head>
|
| +</html>
|
|
|
| Property changes on: chrome/common/extensions/docs/examples/api/windows/merge_windows/background.html
|
| ___________________________________________________________________
|
| Added: svn:mime-type
|
| + text/html
|
| Added: svn:eol-style
|
| + LF
|
|
|
|
|