编程语言
首页 > 编程语言> > javascript – 用户脚本通知适用于Chrome而非Firefox?

javascript – 用户脚本通知适用于Chrome而非Firefox?

作者:互联网

如果目标页面上存在某些内容,我有一个用户脚本会弹出通知.

在Tampermonkey / Chrome下,这不是问题.我可以使用GM_Notification()函数轻松创建通知.

当我尝试在Firefox下执行此操作时,它没有任何相同的行为.
检查日志中没有关于该功能的错误,也没有任何通知弹出.

以下是一些示例代码,它们在Firefox Greasemonkey或Firefox Tampermonkey中不起作用,但在Chrome Tampermonkey中可以使用:

// ==UserScript==
// @name        Test Notifier
// @include     *
// @grant       GM_notification
// @grant       window.focus
// ==/UserScript==

console.log('I am a pretty test script');

var notificationDetails = {
    text: 'THIS IS A TEST NOTIFICATION!!!',
    title: 'TEST',
    timeout: 15000,
    onclick: function() { window.focus(); },
  };
GM_notification(notificationDetails);

这是Firefox的标准行为吗?它是否以完全不同的方式处理HTML5通知(如果有的话)?在Firefox用户脚本中启用通知的常见做法是什么?

解决方法:

GM_notification() is not (yet) supported in Greasemonkey (Firefox).如果你有checked the error console,你会看到这个错误:

GM_notification is not defined

Greasemonkey有an old feature request to add GM_notification();你可以去那里,并敦促领先的GM开发人员尝试赶上Tampermonkey.

标签:javascript,greasemonkey,tampermonkey,userscripts
来源: https://codeday.me/bug/20190717/1488140.html