List of Plug-Ins


The following is a list of the plug-ins installed in this copy of Netscape, generated using the JavaScript navigator.plugins object:
Plug-in Name Filename Description

 

  • Source

    <HTML>
    <HEAD>
    <TITLE>List of Plug-Ins</TITLE>
    </HEAD>
    <BODY>
    <H1>List of Plug-Ins</H1>
    <HR>
    The following is a list of the plug-ins installed in this
    copy of Netscape, generated using the JavaScript
    navigator.plugins object:
    <HR>
    <TABLE BORDER>
    <TR><TH>Plug-in Name</TH>
    <TH>Filename</TH>
    <TH>Description</TH>
    </TR>
    <SCRIPT LANGUAGE="JavaScript">
    for (i=0; i<navigator.plugins.length; i++) {
       document.write("<TR><TD>");
       document.write(navigator.plugins[i].name);
       document.write("</TD><TD>");
       document.write(navigator.plugins[i].filename);
       document.write("</TD><TD>");
       document.write(navigator.plugins[i].description);
       document.write("</TD></TR>");
    }
    </SCRIPT>
    </TABLE>
    </BODY>
    </HTML>