使用 -chrome 时,InstallTrigger.install 在 Firefox 4 中不起作用。有什么解决方法吗?

发布于 2024-11-25 12:39:56 字数 219 浏览 1 评论 0原文

我正在开发一个在 Firefox 中以 Chrome 模式运行的应用程序 (fx.exe -chrome chrome://app/content/main.xul)。在 Firefox 4(3.6 及更低版本)之前,当有新版本可用时,我使用 InstallTrigger.install 来升级应用程序。

不幸的是,这在 Firefox 4 中不再有效。还有其他人遇到过这个问题吗?你是如何解决这个问题的?

I work on an application that runs in chrome mode in Firefox (fx.exe -chrome chrome://app/content/main.xul). Prior to Firefox 4 (3.6 and below) I used the InstallTrigger.install to upgrade the application when there was a new version available.

Unfortunately, this no longer works in Firefox 4. Has anyone else run into this problem? How did you get around it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

溇涏 2024-12-02 12:39:56

为了解决这个问题,我们使用 AddOnManager API 代替 InstallTrigger。

有关详细信息,请参阅 XUL 开发插件管理器

Components.utils['import']("resource://gre/modules/AddonManager.jsm");

AddonManager.getInstallForURL(xpi_address, function(addon) {
    addon.addListener({
        onDownloadStarted: function() {
            alert('Download Started');
        }
      });
      addon.addListener({
        onDownloadProgress: function() {
            var complete_percent = parseInt((100 * (addon.progress/addon.maxProgress)),10);
        }
      });
      addon.addListener({
        onDownloadFailed: function() {
            alert('Upgrade Failed');
        }
      });
      addon.addListener({
        onDownloadEnded: function() {
            alert('Download Successful');
        }
      });
      addon.addListener({
        onInstallStarted: function() {
            alert('Install Started');
        }
      });
      addon.addListener({
        onInstallEnded: function() {
            alert('Install Successful');
        }
      });
      addon.addListener({
        onInstallFailed: function() {
            alert('Install Failed');
        }
      });
      addon.install();
    }, "application/x-xpinstall");

To work around the issue we used the AddOnManager API in the place of InstallTrigger.

For more information see XUL Dev Add-On Manager

Components.utils['import']("resource://gre/modules/AddonManager.jsm");

AddonManager.getInstallForURL(xpi_address, function(addon) {
    addon.addListener({
        onDownloadStarted: function() {
            alert('Download Started');
        }
      });
      addon.addListener({
        onDownloadProgress: function() {
            var complete_percent = parseInt((100 * (addon.progress/addon.maxProgress)),10);
        }
      });
      addon.addListener({
        onDownloadFailed: function() {
            alert('Upgrade Failed');
        }
      });
      addon.addListener({
        onDownloadEnded: function() {
            alert('Download Successful');
        }
      });
      addon.addListener({
        onInstallStarted: function() {
            alert('Install Started');
        }
      });
      addon.addListener({
        onInstallEnded: function() {
            alert('Install Successful');
        }
      });
      addon.addListener({
        onInstallFailed: function() {
            alert('Install Failed');
        }
      });
      addon.install();
    }, "application/x-xpinstall");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文