alarms.getAll()
获取扩展的所有活动闹钟。
这是一个返回 Promise
的异步函数。
语法
js
let getAlarms = browser.alarms.getAll()
参数
无。
返回值
示例
js
function gotAll(alarms) {
for (const alarm of alarms) {
console.log(alarm.name);
}
}
browser.alarms.getAll().then(gotAll);
浏览器兼容性
BCD tables only load in the browser
备注:
此 API 基于 Chromium 的 chrome.alarms
API。