在我的Chrome扩展程序中,我在新窗口中打开一个URL,如下所示:
var newWindow = window.open(strURL, "_blank", "width=1000,height=1500");
setTimeout(function() {
newWindow.close();
}, 10000);
当超时运行时,窗口不会关闭,返回的错误是:
Uncaught TypeError: no access
知道这里发生了什么以及如何解决它?
谢谢!