List of MIME Types


The following is a list of the MIME types installed in this copy of Netscape, generated using the JavaScript navigator.mimeTypes object:
MIME Type Description Current Plug-in Extensions

 

  • Source

    <HTML>
    <HEAD>
    <TITLE>List of MIME Types</TITLE>
    </HEAD>
    <BODY>
    <H1>List of MIME Types</H1>
    <HR>
    The following is a list of the MIME types installed in this
    copy of Netscape, generated using the JavaScript
    navigator.mimeTypes object:
    <HR>
    <TABLE BORDER>
    <TR><TH>MIME Type</TH>
    <TH>Description</TH>
    <TH>Current Plug-in</TH>
    <TH>Extensions</TH>
    </TR>
    <SCRIPT LANGUAGE="JavaScript">
    for (i=0; i<navigator.mimeTypes.length; i++) {
       if (navigator.mimeTypes[i].type.indexOf("zz") == -1) {
          document.write("<TR><TD>");
          document.write(navigator.mimeTypes[i].type);
          document.write("</TD><TD>");
          document.write(navigator.mimeTypes[i].description);
          document.write("</TD><TD>");
          document.write(navigator.mimeTypes[i].enabledPlugin);
          document.write("</TD><TD>");
          document.write(navigator.mimeTypes[i].suffixes);
          document.write("</TD></TR>");
       }
       if (i > 55) break;
    }
    </SCRIPT>
    </TABLE>
    </BODY>
    </HTML>