The Plugin object is used to obtain plug-in information from the browser.
The Plugin object contains an array of elements containing the MIME types handled by each plug-in.
<html> <head> <title> Example of the Plugin object</title> </head> <body> <script language="JavaScript"> <!-- for(i=0; i<navigator.plugins.length; i++){ document.write(navigator.plugins[i].description); } --> </script> </body> </html>