这里的官方文档没有提到这一点,但似乎已经添加了对启动流窗口设置宽度和高度的支持 - 请参阅问题。
所以我从 Chrome 29(稳定)和 31(金丝雀)上的打包应用程序中尝试了这个:
chrome.identity.launchWebAuthFlow({
url: MY_FACEBOOK_OAUTH_URL,
interactive: true,
width: 400,
height: 300
}, function(){});
得到了这个:
Error: Invalid value for argument 1. Property 'width': Unexpected property, Property 'height': Unexpected property.
任何人都知道这是否真的可能?默认尺寸不能很好地与 Facebook 弹出窗口配合使用。