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

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:96 次

字数:2583

最后编辑:6年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文