Would it be much trouble to get SessionSaver to preserve the windows+tabs structure of the session?
I use many windows with many tabs, and like to keep them organized exactly as I set them up.
It is pretty simple to write code that will open a window plus several tabs, the structure is basically as follows (per window):
chrome.windows.create({url:...}, function(win) {
chrome.tabs.create({url:..., windowId: win.id});
chrome.tabs.create({url:..., windowId: win.id});
chrome.tabs.create({url:..., windowId: win.id});
});


LinkBack URL
About LinkBacks



Reply With Quote




