I'm using the following code to capture a screenshot of the selected tab
chrome.tabs.captureVisibleTab( undefined, function( data ) { display( data ) });
The API says its possible to change the size of the tab ( http://code.google.com/chrome/extensions/tabs.html#method-captureVisibleTab ) but I can't work out how to do it. At the moment all of the screenshots are coming out at full size (1440x900) but I only need them at thumbnail sizes.
Does anyone know how to use this API to do that?
Thanks.