首次安装Firefox扩展程序时如何打开“帮助”页面

时间:2019-04-14 20:11:47

标签: firefox firefox-addon

我正在为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文档,但这不会发生。

0 个答案:

没有答案