我正在为Mozilla Firefox开发扩展程序,并且正在寻找一种在首次安装扩展程序时打开帮助页面的方法。
我已经将其与Google Chrome一起使用,但是我无法在线找到有关如何针对Firefox执行此操作的任何文档。
这是我在Google Chrome浏览器中使用的代码
if(navigator.userAgent.indexOf("Chrome") != -1 )
{
chrome.runtime.onInstalled.addListener(function (object) {
chrome.tabs.create({url: "first_run_documents/chrome/chrome.html"}, function (tab) {
});
});
}
这是我正在使用Firefox尝试的代码
if(navigator.userAgent.indexOf("Firefox") != -1 )
{
ServiceWorkerGlobalScope.addEventListener('install', function(event) {
window.open("first_run_documents/firefox/firefox.html");
});
}
我希望在为Firefox安装扩展程序时打开HTML文档,但这不会发生。