Cancels all active alarms.
This is an asynchronous function that returns a
Promise
.
var clearAlarms = browser.alarms.clearAll()
None.
A
Promise
that will be fulfilled with a boolean. This will be
true
if any alarms were cleared,
false
otherwise. Note that Chrome always passes
true
这里。
function onClearedAll(wasCleared) {
console
.
log
(
wasCleared
)
;
// true/false
}
var
clearAlarms
=
浏览器
.
alarms
.
clearAll
(
)
;
clearAlarms
.
then
(
onClearedAll
)
;
BCD tables only load in the browser
注意:
This API is based on Chromium's
chrome.alarms
API。
Microsoft Edge compatibility data is supplied by Microsoft Corporation and is included here under the Creative Commons Attribution 3.0 United States License.
最后修改: , 由 MDN 贡献者