---
title: NavigatorPlugins
slug: Web/API/NavigatorPlugins
tags:
- API
translation_of: Web/API/NavigatorPlugins
---
{{APIRef("HTML DOM")}}{{SeeCompatTable}}
The NavigatorPlugins
interface contains methods and properties related to the plugins installed in the browser.
There is no object of type NavigatorPlugins
, but other interfaces, like {{domxref("Navigator")}}, implement it.
Properties
- {{domxref("NavigatorPlugins.mimeTypes")}} {{readonlyInline}}{{experimental_inline}}
- Returns an {{domxref("MimeTypeArray")}} listing the MIME types supported by the browser.
- {{domxref("NavigatorPlugins.plugins")}} {{readonlyInline}}{{experimental_inline}}
- Returns a {{domxref("PluginArray")}} listing the plugins installed in the browser.
Methods
The NavigatorPlugins
interface doesn't inherit any method.
- {{domxref("NavigatorPlugins.javaEnabled")}} {{readonlyInline}}{{experimental_inline}}
- Returns a {{domxref("Boolean")}} flag indicating whether the host browser is Java-enabled or not.
Specifications
Specification |
Status |
Comment |
{{SpecName('HTML WHATWG', '#navigatorplugins', 'NavigatorPlugins')}} |
{{Spec2('HTML WHATWG')}} |
Initial definition. |
Browser compatibility
{{Compat("api.NavigatorPlugins")}}
See also
- The {{domxref("Navigator")}} interface that implements it.