browserSettings.webNotificationsDisabled 编辑
A BrowserSetting
object that can be used to prevent websites from showing notifications using the Notifications
Web API.
The Notifications
API is used to display desktop notifications to the user. There are three levels of permission for notifications: allow, deny, and prompt. Users can set this permission for every site. If the user has not set a permission for a particular site, then the browser will fall back to a global permission, which defaults to prompt.
Setting browserSettings.webNotificationsDisabled
to true
switches the global permission to deny.
Note that this won't affect sites for which the user has set a per-site preference. For example, if the user sets https://example.org to allow, and an extension then sets browserSettings.webNotificationsDisabled
to true
, then pages under https://example.org will still be allowed to show notifications.
Setting browserSettings.webNotificationsDisabled
to false
switches the global default back to its default value.
Note that this setting has no effect on notifications created by extensions using the notifications
API.
Browser compatibility
BCD tables only load in the browser
The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
Examples
Toggle the setting:
async function toggleWebNotifications() {
let current = await browser.browserSettings.webNotificationsDisabled.get({});
console.log(`Current value: ${current.value}`);
browser.browserSettings.webNotificationsDisabled.set({value: !current.value});
}
browser.browserAction.onClicked.addListener(() => {
toggleWebNotifications();
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论