为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

Firefox 4 not showing newly installed plugins in navigator.plugins array

  • 5 个回答
  • 11 人有此问题
  • 4 次查看
  • 最后回复者为 Xman1234

more options

In Firefox 4 I am trying to detect with javascript if a certain plugin is installed by looking for it in the navigator.plugins array. (https://developer.mozilla.org/en/DOM/window.navigator.plugins)

It seems that newly installed plugins in Firefox 4 do not show up in that array.

I have restarted Firefox, and they show up in Firefox's Add-ons Manager but not in the navigator.plugins array.

I know Firebug works because I used it to show me the contents of of window.plugins.

(Also, you can even see that your script didn't pick up Firebug when you automatically retrieved my list of plugins to populate the "Installed Plugins" field in this post.)

In Firefox 4 I am trying to detect with javascript if a certain plugin is installed by looking for it in the navigator.plugins array. (https://developer.mozilla.org/en/DOM/window.navigator.plugins) It seems that newly installed plugins in Firefox 4 do not show up in that array. I have restarted Firefox, and they show up in Firefox's Add-ons Manager but not in the navigator.plugins array. I know Firebug works because I used it to show me the contents of of window.plugins. (Also, you can even see that your script didn't pick up Firebug when you automatically retrieved my list of plugins to populate the "Installed Plugins" field in this post.)

被采纳的解决方案

I think that plugins installed via an XPI file like an extension should still appear on the about:plugins page. I'm on Linux and that is how the Silverlight (Moonlight) plugin installs.

A good place to ask questions and advice about web development is at the mozillaZine Web Development/Standards Evangelism forum.
The helpers at that forum are more knowledgeable about web development issues.
You need to register at the mozillaZine forum site in order to post at that forum.

See http://forums.mozillazine.org/viewforum.php?f=25

定位到答案原位置 👍 0

所有回复 (5)

more options

Does it help if you refresh that list by opening the about:plugins page?

javascript:navigator.plugins.refresh(true);

more options

Thanks for the quick response.

I think I have found the difference. The 'plugin' I was referring to is actually listed as an Add-On in about:addons and it is not listed in about:plugins.

Could it be that in 3.5 it was showing up for me in the plugins[] array because I had copied the .dll into Firefox's plugins directory. But this latest time I installed it using the xpi.

Or is it that in Firefox 3.5 our plugin is actually listed as a Plugin, and now in Firefox 4.0 it is listed as an Addon?

Is there an official way to use javascript to determine if a specific "Addon" is installed?

由tones411于修改

more options

If there is not a way to detect if an addon is installed, is there a way for us to program our plugin so it shows up in the about:plugins page and in the navigator.plugins array?

由tones411于修改

more options

选择的解决方案

I think that plugins installed via an XPI file like an extension should still appear on the about:plugins page. I'm on Linux and that is how the Silverlight (Moonlight) plugin installs.

A good place to ask questions and advice about web development is at the mozillaZine Web Development/Standards Evangelism forum.
The helpers at that forum are more knowledgeable about web development issues.
You need to register at the mozillaZine forum site in order to post at that forum.

See http://forums.mozillazine.org/viewforum.php?f=25

more options

tones411 were you able to get this done?