Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 chrome 扩展中创建一个新选项卡,如下面给出的代码,但它会使浏览器崩溃。但是,当我不使用回调函数时,它可以正常工作。
chrome.tabs.create({'url': 'https://google.com'}, function(tab){ alert(tab.id) })
您只需要更正您的网址。它应该是
http://www.google.com
你可以参考
http://code.google.com/chrome/extensions/tabs.html