0

我正在创建一个具有丰富通知的 google-chrome-extension。我需要更改超时以关闭此通知,我需要一些帮助。这是我的代码。我已经尝试过 window.close(),但它似乎在 Chrome 中不起作用。

var options = {
  type: "basic",
  title: "test",
  message: "body here",
  iconUrl: "icon.png"
};
var msj = chrome.notifications.create(options);
setTimeout(function () {
  chrome.notifications.clear(msj); // how to close?
}, 1500); 
4

1 回答 1

1

Chrome API大多是异步的(一定要看看那个链接)。

chrome.notifications.create不会立即创建通知,也不会返回 ID。您需要为此使用回调:

chrome.notifications.create(options, function(msj) {
  setTimeout(function() {
    chrome.notifications.clear(msj);
  }, 1500); 
});
于 2015-07-23T09:18:42.270 回答