List all plugins installed in FF
15
List all plugins installed in FF
var L = navigator.plugins.length
document.write( L );
document.write("Plugins".bold());
document.write("<BR>");
document.write("Name | Filename | description".bold());
document.write("<BR>");
for(i=0; i<L; i++){
document.write(navigator.plugins[i].name);
document.write(" | ".bold());
document.write(navigator.plugins[i].filename);
document.write(" | ".bold());
document.write(navigator.plugins[i].description);
document.write("<BR>");
}






There are currently no comments for this snippet.