我在我的扩展程序中使用此API,如:
chrome.runtime.onMessage.addListener (req, sender, msg) ->
if req.word is 'open'
popup =
type: 'popup'
url: 'build/select.html'
left: 600
width: 400
height: 600
focused: yes
chrome.windows.create popup, (win) ->
win.alwaysOnTop = yes
但很多时候我发现窗口位于屏幕的左边缘。这个API坏了还是什么?我怎样才能使它发挥作用?
我的笔记本电脑运行Ubuntu 13.04,只是希望它不是问题。